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

20 lines
586 B
Nix
Raw Normal View History

{ cabal, async, mtl, systemFileio, systemFilepath, text, time
, unixCompat
2012-06-28 09:32:20 +00:00
}:
cabal.mkDerivation (self: {
pname = "shelly";
version = "1.4.4";
sha256 = "0gxmwwpg7p5ai35ng8fsx743w3q9p5jl0c1c3ckiqvz4jbwgyf7y";
2012-06-28 09:32:20 +00:00
buildDepends = [
async mtl systemFileio systemFilepath text time unixCompat
2012-06-28 09:32:20 +00:00
];
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 09:32:20 +00:00
};
})