haskellPackages adding multiset & filepath

svn path=/nixpkgs/trunk/; revision=16400
This commit is contained in:
Marc Weber 2009-07-16 15:18:24 +00:00
parent eccd5d5a41
commit a20dba3aec
3 changed files with 33 additions and 0 deletions

View file

@ -0,0 +1,12 @@
{ cabal} :
cabal.mkDerivation (self : {
pname = "filepath";
version = "1.1.0.2";
sha256 = "1mkckshbpmgp7z97vc923x1qph8brqh9wcnb90kbv46bhiza277q";
propagatedBuildInputs = [];
meta = {
description = "Library for manipulating FilePath's in a cross platform way";
};
})

View file

@ -0,0 +1,13 @@
{cabal, syb}:
cabal.mkDerivation (self : {
pname = "multiset";
version = "0.1";
sha256 = "0nh1bfis4r5yd4jd9dqwckiyrqa7j8yqn4ai676xb18rh4hwsv87";
propagatedBuildInputs = [syb];
meta = {
description = "A variation of Data.Set. Multisets, sometimes also called bags, can contain multiple copies of the same key";
};
patchPhase = '' sed -i 's/containers/containers, syb/' *.cabal ''; # add syb to library dependency list
})

View file

@ -81,6 +81,10 @@ rec {
inherit cabal;
};
filepath = import ../development/libraries/haskell/filepath {
inherit cabal;
};
emgm = import ../development/libraries/haskell/emgm {
inherit cabal;
};
@ -219,6 +223,10 @@ rec {
inherit cabal;
};
multiset = import ../development/libraries/haskell/multiset {
inherit cabal syb;
};
network = import ../development/libraries/haskell/network {
inherit cabal parsec;
};