22 lines
794 B
Nix
22 lines
794 B
Nix
{ cabal, async, enclosedExceptions, exceptions, liftedAsync
|
|
, liftedBase, monadControl, mtl, systemFileio, systemFilepath, text
|
|
, time, transformers, transformersBase, unixCompat
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "shelly";
|
|
version = "1.5.3";
|
|
sha256 = "1s4j2jp0nflv1nn29f4x2j1vfjf2mimjz0ljy4hg9hn7jp028s8h";
|
|
buildDepends = [
|
|
async enclosedExceptions exceptions liftedAsync liftedBase
|
|
monadControl mtl systemFileio systemFilepath text time transformers
|
|
transformersBase 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 ];
|
|
};
|
|
})
|