mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
Introduced haskellPackages.extra
This commit is contained in:
parent
1f80db6eed
commit
480290242f
2 changed files with 20 additions and 0 deletions
18
pkgs/development/libraries/haskell/extra/default.nix
Normal file
18
pkgs/development/libraries/haskell/extra/default.nix
Normal 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 ];
|
||||
};
|
||||
})
|
|
@ -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 {};
|
||||
|
|
Loading…
Reference in a new issue