19 lines
573 B
Nix
19 lines
573 B
Nix
{ cabal, mtl, systemFileio, systemFilepath, text, time, unixCompat
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "shelly";
|
|
version = "0.13.4";
|
|
sha256 = "0776vlvzkx5dbkb8gyvcngq2ryabcx1ib4hw2cb6f8bm77y20sq1";
|
|
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 ];
|
|
};
|
|
})
|