1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/development/libraries/haskell/shelly/default.nix

20 lines
588 B
Nix
Raw Normal View History

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