d98161617f
- hinotify: added meta.maintainers section - hledger-lib: update to version 0.18.1 - hledger: update to version 0.18.1 - hledger-web: update to version 0.18.1 - lifted-base: update to version 0.1.1.1 - monad-control: update to version 0.3.1.4 - multiarg: update to version 0.4.0.0 - pandoc: update to version 1.9.4.2 - shelly: update to version 0.12.2
19 lines
573 B
Nix
19 lines
573 B
Nix
{ cabal, mtl, systemFileio, systemFilepath, text, time, unixCompat
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "shelly";
|
|
version = "0.12.2";
|
|
sha256 = "0nhycisk6jc3mqd2xqcxxgfqsqm8vp5k4g45gdljalb87rqvqkkv";
|
|
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 ];
|
|
};
|
|
})
|