Author: mkwik
Date: Thu May 17 10:16:05 2012
New Revision: 34150
URL: https://nixos.org/websvn/nix/?rev=34150&sc=1

Log:
executable-path haskell package

Added:
   nixpkgs/trunk/pkgs/development/libraries/haskell/executable-path/
   nixpkgs/trunk/pkgs/development/libraries/haskell/executable-path/default.nix
Modified:
   nixpkgs/trunk/pkgs/top-level/haskell-packages.nix

Added: 
nixpkgs/trunk/pkgs/development/libraries/haskell/executable-path/default.nix
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ 
nixpkgs/trunk/pkgs/development/libraries/haskell/executable-path/default.nix    
    Thu May 17 10:16:05 2012        (r34150)
@@ -0,0 +1,14 @@
+{ cabal, filepath }:
+
+cabal.mkDerivation (self: {
+  pname = "executable-path";
+  version = "0.0.3";
+  sha256 = "1jg58qf19qz93c60ryglcavwdcysz4fd4qn8kpw5im9w9kniawlc";
+  buildDepends = [ filepath ];
+  meta = {
+    homepage = "http://code.haskell.org/~bkomuves/";;
+    description = "Finding out the full path of the executable";
+    license = self.stdenv.lib.licenses.publicDomain;
+    platforms = self.ghc.meta.platforms;
+  };
+})

Modified: nixpkgs/trunk/pkgs/top-level/haskell-packages.nix
==============================================================================
--- nixpkgs/trunk/pkgs/top-level/haskell-packages.nix   Thu May 17 02:51:24 
2012        (r34149)
+++ nixpkgs/trunk/pkgs/top-level/haskell-packages.nix   Thu May 17 10:16:05 
2012        (r34150)
@@ -592,6 +592,8 @@
 
   explicitException = callPackage 
../development/libraries/haskell/explicit-exception {};
 
+  executablePath = callPackage 
../development/libraries/haskell/executable-path {};
+
   filepath_1_3_0_0 = callPackage ../development/libraries/haskell/filepath {};
   filepath = null; # a core package in recent GHCs
 
_______________________________________________
nix-commits mailing list
[email protected]
http://lists.science.uu.nl/mailman/listinfo/nix-commits

Reply via email to