3
0
Fork 0
forked from mirrors/nixpkgs

Added gdiff Haskell package.

svn path=/nixpkgs/trunk/; revision=21207
This commit is contained in:
Andres Löh 2010-04-21 14:05:17 +00:00
parent 28695d990c
commit 1c2fa602ee
2 changed files with 17 additions and 0 deletions

View file

@ -0,0 +1,13 @@
{cabal}:
cabal.mkDerivation (self : {
pname = "gdiff";
version = "1.0";
sha256 = "35257b1090cf78f95d24c7a89920863c1d824652311fa5793693d7d06d96517b";
meta = {
description = "Generic diff and patch";
license = "BSD";
maintainers = [self.stdenv.lib.maintainers.andres];
};
})

View file

@ -168,6 +168,10 @@ rec {
inherit cabal mtl;
};
gdiff = import ../development/libraries/haskell/gdiff {
inherit cabal;
};
getOptions = import ../development/libraries/haskell/get-options {
inherit (pkgs) fetchurl sourceFromHead;
inherit cabal mtl;