about summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/process/1.2.0.0.nix
blob: f3ae03da7c4182ff7e57bae4bc80d700b57ae473 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ cabal, deepseq, filepath }:

cabal.mkDerivation (self: {
  pname = "process";
  version = "1.2.0.0";
  sha256 = "02il5pxibf0q9b46v0lgdxyc2wlk5kg1v8223ry6brg41zpcj71q";
  buildDepends = [ deepseq filepath ];
  meta = {
    description = "Process libraries";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
    maintainers = [ self.stdenv.lib.maintainers.thoughtpolice ];
  };
})