about summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/deepseq/1.3.0.2.nix
blob: 3c6ce781dc29372cac8ce2dd57e0e5e5b45fdb71 (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.2";
  sha256 = "09jnfz5158s4fvlfjbz44vb5jsvflagmsrgbk846arymwym6b7bp";
  meta = {
    description = "Deep evaluation of data structures";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
    maintainers = [ self.stdenv.lib.maintainers.andres ];
  };
})