haskellPackages adding multiset & filepath
svn path=/nixpkgs/trunk/; revision=16400
This commit is contained in:
parent
eccd5d5a41
commit
a20dba3aec
12
pkgs/development/libraries/haskell/filepath/default.nix
Normal file
12
pkgs/development/libraries/haskell/filepath/default.nix
Normal 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";
|
||||||
|
};
|
||||||
|
})
|
||||||
|
|
13
pkgs/development/libraries/haskell/multiset/default.nix
Normal file
13
pkgs/development/libraries/haskell/multiset/default.nix
Normal 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
|
||||||
|
})
|
||||||
|
|
@ -81,6 +81,10 @@ rec {
|
|||||||
inherit cabal;
|
inherit cabal;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
filepath = import ../development/libraries/haskell/filepath {
|
||||||
|
inherit cabal;
|
||||||
|
};
|
||||||
|
|
||||||
emgm = import ../development/libraries/haskell/emgm {
|
emgm = import ../development/libraries/haskell/emgm {
|
||||||
inherit cabal;
|
inherit cabal;
|
||||||
};
|
};
|
||||||
@ -219,6 +223,10 @@ rec {
|
|||||||
inherit cabal;
|
inherit cabal;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
multiset = import ../development/libraries/haskell/multiset {
|
||||||
|
inherit cabal syb;
|
||||||
|
};
|
||||||
|
|
||||||
network = import ../development/libraries/haskell/network {
|
network = import ../development/libraries/haskell/network {
|
||||||
inherit cabal parsec;
|
inherit cabal parsec;
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user