nixpkgs/pkgs/development/libraries/haskell/shelly/default.nix
2014-01-11 14:52:12 +01:00

19 lines
574 B
Nix

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