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

23 lines
680 B
Nix
Raw Normal View History

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