mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
Merge pull request #1922 from jagajaga/haskell_pkgs_add
hoauth2 and bytestring-show add pkgs
This commit is contained in:
commit
b75a5e6f84
3 changed files with 37 additions and 0 deletions
|
@ -0,0 +1,14 @@
|
|||
{ cabal, binary }:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "bytestring-show";
|
||||
version = "0.3.5.5";
|
||||
sha256 = "0vd8f3jrzi2s119rcn20k6srk6l7ypiars1mxw1n1jrjx8ill2y4";
|
||||
buildDepends = [ binary ];
|
||||
meta = {
|
||||
homepage = "http://code.haskell.org/~dolio/";
|
||||
description = "Efficient conversion of values into readable byte strings";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
};
|
||||
})
|
19
pkgs/development/libraries/haskell/hoauth2/default.nix
Normal file
19
pkgs/development/libraries/haskell/hoauth2/default.nix
Normal file
|
@ -0,0 +1,19 @@
|
|||
{ cabal, aeson, bytestringShow, conduit, httpConduit, httpTypes
|
||||
, monadControl, mtl, random, resourcet, text, transformers
|
||||
}:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "hoauth2";
|
||||
version = "0.3.6.1";
|
||||
sha256 = "0nfh77fxyl8vbdnrrp28hsl1zhxhmg8mjn0gfvc2i3w5rd6j0lda";
|
||||
buildDepends = [
|
||||
aeson bytestringShow conduit httpConduit httpTypes monadControl mtl
|
||||
random resourcet text transformers
|
||||
];
|
||||
meta = {
|
||||
homepage = "https://github.com/freizl/hoauth2";
|
||||
description = "hoauth2";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
};
|
||||
})
|
|
@ -699,6 +699,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.finalReturn x
|
|||
|
||||
bytestringMmap = callPackage ../development/libraries/haskell/bytestring-mmap {};
|
||||
|
||||
bytestringShow = callPackage ../development/libraries/haskell/bytestring-show {};
|
||||
|
||||
bytestringTrie = callPackage ../development/libraries/haskell/bytestring-trie {};
|
||||
|
||||
bytestringProgress = callPackage ../development/libraries/haskell/bytestring-progress {};
|
||||
|
@ -1381,6 +1383,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.finalReturn x
|
|||
|
||||
hoauth = callPackage ../development/libraries/haskell/hoauth {};
|
||||
|
||||
hoauth2 = callPackage ../development/libraries/haskell/hoauth2 {};
|
||||
|
||||
hoodle = callPackage ../applications/graphics/hoodle {};
|
||||
|
||||
hoodleBuilder = callPackage ../development/libraries/haskell/hoodle-builder {};
|
||||
|
|
Loading…
Reference in a new issue