mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
3b2254a3af
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
16 lines
473 B
Nix
16 lines
473 B
Nix
{ cabal, HUnit, QuickCheck }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "Ranged-sets";
|
|
version = "0.3.0";
|
|
sha256 = "1am0lsd3yiyn7ayk9k4ff7zdj67m0pxjl10cxi5f9hgjj4y9380l";
|
|
buildDepends = [ HUnit QuickCheck ];
|
|
meta = {
|
|
homepage = "http://code.haskell.org/ranged-sets";
|
|
description = "Ranged sets for Haskell";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|