1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/libraries/haskell/NumInstances/default.nix
Peter Simons 03deb61330 haskell-NumInstances: added version 1.0
svn path=/nixpkgs/trunk/; revision=29457
2011-09-23 16:08:52 +00:00

13 lines
332 B
Nix

{ cabal }:
cabal.mkDerivation (self: {
pname = "NumInstances";
version = "1.0";
sha256 = "1fmg3slwma5f88a2qxj54ny40s67qbdyvsyh506bkp11v54958fy";
meta = {
description = "Instances of numeric classes for functions and tuples";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})