3b2254a3af
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
19 lines
530 B
Nix
19 lines
530 B
Nix
{ cabal, binary, executablePath, filepath, ghcPaths, ioStorage
|
|
, time, xdgBasedir
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "dyre";
|
|
version = "0.8.11";
|
|
sha256 = "0sg5csshznbbyvq72s4sps7bkjlkfxiwcy4i3ip83lrxjw1msvr8";
|
|
buildDepends = [
|
|
binary executablePath filepath ghcPaths ioStorage time xdgBasedir
|
|
];
|
|
meta = {
|
|
homepage = "http://github.com/willdonnelly/dyre";
|
|
description = "Dynamic reconfiguration in Haskell";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
};
|
|
})
|