haskellPackages adding multiset & filepath
svn path=/nixpkgs/trunk/; revision=16400
This commit is contained in:
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
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user