summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/dyre/default.nix
blob: 8b3d2cab677ad6b7a849a19bbecc45845bbe7371 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ 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;
  };
})