3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/haskell/shelly/default.nix
2012-08-03 17:42:48 +02:00

19 lines
573 B
Nix

{ cabal, mtl, systemFileio, systemFilepath, text, time, unixCompat
}:
cabal.mkDerivation (self: {
pname = "shelly";
version = "0.13.4";
sha256 = "0776vlvzkx5dbkb8gyvcngq2ryabcx1ib4hw2cb6f8bm77y20sq1";
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 ];
};
})