shelly: new package through cabal2nix
This commit is contained in:
parent
d4d440ae0a
commit
38bcd42219
17
pkgs/development/libraries/haskell/shelly/default.nix
Normal file
17
pkgs/development/libraries/haskell/shelly/default.nix
Normal file
@ -0,0 +1,17 @@
|
||||
{ cabal, mtl, systemFileio, systemFilepath, text, time, unixCompat
|
||||
}:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "shelly";
|
||||
version = "0.12.0.2";
|
||||
sha256 = "0gyjmwrp1n7xrjc8rn4qgnrssfikrgp4as10a9kydjnllyfaj38z";
|
||||
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;
|
||||
};
|
||||
})
|
@ -1251,6 +1251,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
|
||||
|
||||
semigroups = callPackage ../development/libraries/haskell/semigroups {};
|
||||
|
||||
shelly = callPackage ../development/libraries/haskell/shelly {};
|
||||
|
||||
simpleSendfile = callPackage ../development/libraries/haskell/simple-sendfile {};
|
||||
|
||||
skein = callPackage ../development/libraries/haskell/skein {};
|
||||
|
Loading…
Reference in New Issue
Block a user