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

23 lines
682 B
Nix
Raw Normal View History

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