Author: simons
Date: Tue Jan 24 15:06:18 2012
New Revision: 31814
URL: https://nixos.org/websvn/nix/?rev=31814&sc=1

Log:
haskell-ghc-mod: updated to version 1.0.7

Modified:
   nixpkgs/trunk/pkgs/development/libraries/haskell/ghc-mod/default.nix

Modified: nixpkgs/trunk/pkgs/development/libraries/haskell/ghc-mod/default.nix
==============================================================================
--- nixpkgs/trunk/pkgs/development/libraries/haskell/ghc-mod/default.nix        
Tue Jan 24 15:06:16 2012        (r31813)
+++ nixpkgs/trunk/pkgs/development/libraries/haskell/ghc-mod/default.nix        
Tue Jan 24 15:06:18 2012        (r31814)
@@ -1,30 +1,26 @@
-{ cabal, attoparsec, attoparsecEnumerator, ghcPaths, hlint, regexPosix, emacs, 
emacs23Packages }:
+{ cabal, attoparsec, attoparsecEnumerator, enumerator, ghcPaths
+, hlint, regexPosix, transformers
+}:
 
 cabal.mkDerivation (self: {
   pname = "ghc-mod";
-  version = "1.0.6";
-  sha256 = "c075314de03209827a0e59ee3e63a4d21bc8edb024a1e36721eea248805b38ba";
+  version = "1.0.7";
+  sha256 = "1l490cspz4cym9cwdjr4xz7080f30sl5cm6fslb51ayy2k37zfcx";
+  isLibrary = false;
+  isExecutable = true;
   buildDepends = [
-    attoparsec attoparsecEnumerator ghcPaths hlint regexPosix
+    attoparsec attoparsecEnumerator enumerator ghcPaths hlint
+    regexPosix transformers
   ];
-#  buildTools = [emacs emacs23];
-  propagatedBuildInputs = [emacs emacs23Packages.haskellMode];
-  isExecutable = true;
-  postInstall = ''
-    cd $out/share/$pname-$version
-    make
-    rm Makefile
-    cd ..
-    ensureDir "$out/share/emacs"
-    mv $pname-$version emacs/site-lisp
-  '';
-
   meta = {
+    homepage = "http://www.mew.org/~kazu/proj/ghc-mod/";;
     description = "Happy Haskell programming on Emacs";
     license = self.stdenv.lib.licenses.bsd3;
     platforms = self.ghc.meta.platforms;
     maintainers = [
+      self.stdenv.lib.maintainers.andres
       self.stdenv.lib.maintainers.bluescreen303
+      self.stdenv.lib.maintainers.simons
     ];
   };
 })
_______________________________________________
nix-commits mailing list
[email protected]
http://lists.science.uu.nl/mailman/listinfo/nix-commits

Reply via email to