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

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