summary refs log tree commit diff
diff options
context:
space:
mode:
authorMateusz Kowalczyk <fuuzetsu@fuuzetsu.co.uk>2014-10-15 01:02:03 +0100
committerMateusz Kowalczyk <fuuzetsu@fuuzetsu.co.uk>2014-10-15 01:02:03 +0100
commit0732523c7d393754e5fabea17b8a48cafd765369 (patch)
tree620b411bd0c0a10fcea9401425f86df285c077d7
parenta921dba56ab246b66fede41c313e1e7b89380863 (diff)
downloadnixpkgs-0732523c7d393754e5fabea17b8a48cafd765369.tar
nixpkgs-0732523c7d393754e5fabea17b8a48cafd765369.tar.gz
nixpkgs-0732523c7d393754e5fabea17b8a48cafd765369.tar.bz2
nixpkgs-0732523c7d393754e5fabea17b8a48cafd765369.tar.lz
nixpkgs-0732523c7d393754e5fabea17b8a48cafd765369.tar.xz
nixpkgs-0732523c7d393754e5fabea17b8a48cafd765369.tar.zst
nixpkgs-0732523c7d393754e5fabea17b8a48cafd765369.zip
agda: add fuuzetsu to maintainers
-rw-r--r--pkgs/development/compilers/agda/default.nix1
-rw-r--r--pkgs/development/compilers/agda/stdlib.nix2
2 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/compilers/agda/default.nix b/pkgs/development/compilers/agda/default.nix
index 3a44baa489a..c930fa1b193 100644
--- a/pkgs/development/compilers/agda/default.nix
+++ b/pkgs/development/compilers/agda/default.nix
@@ -30,5 +30,6 @@ cabal.mkDerivation (self: {
     description = "A dependently typed functional programming language and proof assistant";
     license = self.stdenv.lib.licenses.mit;
     platforms = self.ghc.meta.platforms;
+    maintainers = with self.stdenv.lib.maintainers; [ fuuzetsu ];
   };
 })
diff --git a/pkgs/development/compilers/agda/stdlib.nix b/pkgs/development/compilers/agda/stdlib.nix
index 7305fbb5397..638b45951c8 100644
--- a/pkgs/development/compilers/agda/stdlib.nix
+++ b/pkgs/development/compilers/agda/stdlib.nix
@@ -21,6 +21,6 @@ agda.mkDerivation (self: rec {
     description = "A standard library for use with the Agda compiler.";
     license = stdenv.lib.licenses.mit;
     platforms = stdenv.lib.platforms.unix;
-    maintainers = with maintainers; [ jwiegley ];
+    maintainers = with maintainers; [ jwiegley fuuzetsu ];
   };
 })