mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 14:45:27 +00:00
Add graph-wrapper haskell package
This commit is contained in:
parent
b5de8156cb
commit
2fd60ee948
13
pkgs/development/libraries/haskell/graph-wrapper/default.nix
Normal file
13
pkgs/development/libraries/haskell/graph-wrapper/default.nix
Normal file
|
@ -0,0 +1,13 @@
|
|||
{ cabal }:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "graph-wrapper";
|
||||
version = "0.2.4.2";
|
||||
sha256 = "0cf70xvmzn4w5pg1bxizajqgcbjwwk6jrd7hnb3kfqy1v3apifyf";
|
||||
meta = {
|
||||
homepage = "http://www.github.com/batterseapower/graph-wrapper";
|
||||
description = "A wrapper around the standard Data.Graph with a less awkward interface";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
};
|
||||
})
|
|
@ -1237,6 +1237,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.finalReturn x
|
|||
|
||||
graphviz = callPackage ../development/libraries/haskell/graphviz {};
|
||||
|
||||
graphWrapper = callPackage ../development/libraries/haskell/graph-wrapper {};
|
||||
|
||||
groups = callPackage ../development/libraries/haskell/groups {};
|
||||
|
||||
groupoids = callPackage ../development/libraries/haskell/groupoids {};
|
||||
|
|
Loading…
Reference in a new issue