1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/libraries/haskell/constraints/default.nix
2013-07-01 12:11:02 +02:00

16 lines
456 B
Nix

{ cabal, newtype }:
cabal.mkDerivation (self: {
pname = "constraints";
version = "0.3.3";
sha256 = "0mglqd6l6bc333i7gymbm8q037hj5fny6jzyg1zmw5kg6r3xcwdi";
buildDepends = [ newtype ];
meta = {
homepage = "http://github.com/ekmett/constraints/";
description = "Constraint manipulation";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})