summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/deepseq/1.3.0.0.nix
blob: e2c9c926aa78a6efcc7658321c87fb08edba4689 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ cabal }:

cabal.mkDerivation (self: {
  pname = "deepseq";
  version = "1.3.0.0";
  sha256 = "0z2k1rda67nmhv62irjfd642iarj1i9m55l6p47j4cysrszhvqgy";
  meta = {
    description = "Deep evaluation of data structures";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
    maintainers = [
      self.stdenv.lib.maintainers.andres
      self.stdenv.lib.maintainers.simons
    ];
  };
})