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

19 lines
574 B
Nix
Raw Normal View History

{ cabal, mtl, systemFileio, systemFilepath, text, time, unixCompat
2012-06-28 10:32:20 +01:00
}:
cabal.mkDerivation (self: {
pname = "shelly";
version = "1.4.0.2";
sha256 = "1034jc86mci1ia3wk5gjxzn936cz4a159imikjgljqvyv8vrw1ck";
2012-06-28 10:32:20 +01:00
buildDepends = [
mtl systemFileio systemFilepath text time unixCompat
];
meta = {
homepage = "https://github.com/yesodweb/Shelly.hs";
description = "shell-like (systems) programming in Haskell";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];
2012-06-28 10:32:20 +01:00
};
})