summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/non-negative/default.nix
blob: 934bb76dcd4215628dad0a664e0e51e1ff54c872 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ cabal, QuickCheck, utilityHt }:

cabal.mkDerivation (self: {
  pname = "non-negative";
  version = "0.1";
  sha256 = "0aebb6f5518191a02b11230798444997a03b84d63d2aaa6c38cac6718f6c351c";
  isLibrary = true;
  isExecutable = true;
  buildDepends = [ QuickCheck utilityHt ];
  meta = {
    homepage = "http://code.haskell.org/~thielema/non-negative/";
    description = "Non-negative numbers";
    license = "GPL";
    platforms = self.ghc.meta.platforms;
    maintainers = [
      self.stdenv.lib.maintainers.andres
      self.stdenv.lib.maintainers.simons
    ];
  };
})