mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-20 11:05:14 +00:00
Add expression for Haskell library 'these'
This commit is contained in:
parent
0ea20bef3c
commit
fb778b705f
19
pkgs/development/libraries/haskell/these/default.nix
Normal file
19
pkgs/development/libraries/haskell/these/default.nix
Normal file
@ -0,0 +1,19 @@
|
||||
{ cabal, bifunctors, mtl, profunctors, semigroupoids, semigroups
|
||||
, transformers, vector
|
||||
}:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "these";
|
||||
version = "0.4.2";
|
||||
sha256 = "0hs59i07k1lkynvdpymjvl1va2frc3aq6wyrmbi7mz3vmz0bjcp7";
|
||||
buildDepends = [
|
||||
bifunctors mtl profunctors semigroupoids semigroups transformers
|
||||
vector
|
||||
];
|
||||
meta = {
|
||||
homepage = "https://github.com/isomorphism/these";
|
||||
description = "An either-or-both data type, with corresponding hybrid error/writer monad transformer";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
};
|
||||
})
|
@ -2551,6 +2551,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.finalReturn x
|
||||
|
||||
tfRandom = callPackage ../development/libraries/haskell/tf-random {};
|
||||
|
||||
these = callPackage ../development/libraries/haskell/these {};
|
||||
|
||||
thespian = callPackage ../development/libraries/haskell/thespian {};
|
||||
|
||||
thDesugar = callPackage ../development/libraries/haskell/th-desugar {};
|
||||
|
Loading…
Reference in New Issue
Block a user