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

14 lines
389 B
Nix
Raw Normal View History

2014-05-03 21:01:00 -07:00
{ cabal }:
cabal.mkDerivation (self: {
pname = "cond";
2014-05-15 07:08:24 -07:00
version = "0.4.1";
sha256 = "16xk8clsxv5qi5f745xvs44y8p8dnmlmjkjzwqz9jl8fbmkmki3b";
2014-05-03 21:01:00 -07:00
meta = {
homepage = "https://github.com/kallisti-dev/cond";
description = "Basic conditional and boolean operators with monadic variants";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})