nixpkgs/pkgs/development/libraries/haskell/nat/default.nix

13 lines
297 B
Nix
Raw Normal View History

2013-01-09 15:44:11 +00:00
{ cabal }:
cabal.mkDerivation (self: {
pname = "nat";
version = "0.3";
sha256 = "1v43c1dr72qn8mymnwcq6an8sqxjaxhac037k4gbv8z8bg18zmf5";
meta = {
description = "Lazy binary natural numbers";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})