Introduced haskellPackages.extra

This commit is contained in:
Aycan iRiCAN 2014-10-19 16:21:58 +03:00
parent 1f80db6eed
commit 480290242f
2 changed files with 20 additions and 0 deletions

View file

@ -0,0 +1,18 @@
# This file was auto-generated by cabal2nix. Please do NOT edit manually!
{ cabal, filepath, QuickCheck, time }:
cabal.mkDerivation (self: {
pname = "extra";
version = "0.3";
sha256 = "0c8b8xp2ipjhpkvwnaib6qm39mjh836rhkmg3hp4pn7ck3139ys7";
buildDepends = [ filepath time ];
testDepends = [ QuickCheck ];
meta = {
homepage = "https://github.com/ndmitchell/extra#readme";
description = "Extra functions I use";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = with self.stdenv.lib.maintainers; [ aycanirican ];
};
})

View file

@ -816,6 +816,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
extensibleExceptions_0_1_1_4 = callPackage ../development/libraries/haskell/extensible-exceptions/0.1.1.4.nix {};
extensibleExceptions = self.extensibleExceptions_0_1_1_4;
extra = callPackage ../development/libraries/haskell/extra {};
failure = callPackage ../development/libraries/haskell/failure {};
fastcgi = callPackage ../development/libraries/haskell/fastcgi {};