haskell-hsbencher and haskell-GenericPretty: add packages
This commit is contained in:
parent
9047f389bf
commit
51a59b34d3
3 changed files with 41 additions and 0 deletions
15
pkgs/development/libraries/haskell/GenericPretty/default.nix
Normal file
15
pkgs/development/libraries/haskell/GenericPretty/default.nix
Normal file
|
@ -0,0 +1,15 @@
|
|||
# This file was auto-generated by cabal2nix. Please do NOT edit manually!
|
||||
|
||||
{ cabal }:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "GenericPretty";
|
||||
version = "1.2.1";
|
||||
sha256 = "0bb70mic7srr7x8k83d1i0m0a32gm72zr78ccdf3ckchj9136php";
|
||||
meta = {
|
||||
homepage = "https://github.com/RazvanRanca/GenericPretty";
|
||||
description = "A generic, derivable, haskell pretty printer";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
};
|
||||
})
|
22
pkgs/development/libraries/haskell/hsbencher/default.nix
Normal file
22
pkgs/development/libraries/haskell/hsbencher/default.nix
Normal file
|
@ -0,0 +1,22 @@
|
|||
# This file was auto-generated by cabal2nix. Please do NOT edit manually!
|
||||
|
||||
{ cabal, async, dataDefault, filepath, GenericPretty, HUnit
|
||||
, ioStreams, mtl, random, testFramework, testFrameworkHunit, text
|
||||
, time
|
||||
}:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "hsbencher";
|
||||
version = "1.20.0.2";
|
||||
sha256 = "1ydx70ik48s9fsn51snpl4aq7imfwgqmfin46sqpz0xlcyxs040z";
|
||||
buildDepends = [
|
||||
async dataDefault filepath GenericPretty ioStreams mtl random time
|
||||
];
|
||||
testDepends = [ HUnit testFramework testFrameworkHunit text time ];
|
||||
doCheck = false;
|
||||
meta = {
|
||||
description = "Launch and gather data from Haskell and non-Haskell benchmarks";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
};
|
||||
})
|
|
@ -900,6 +900,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
|
|||
|
||||
genericDeriving = callPackage ../development/libraries/haskell/generic-deriving {};
|
||||
|
||||
GenericPretty = callPackage ../development/libraries/haskell/GenericPretty {};
|
||||
|
||||
genericsSop = callPackage ../development/libraries/haskell/generics-sop {};
|
||||
|
||||
ghcCore = callPackage ../development/libraries/haskell/ghc-core {};
|
||||
|
@ -1247,6 +1249,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
|
|||
|
||||
hS3 = callPackage ../development/libraries/haskell/hS3 {};
|
||||
|
||||
hsbencher = callPackage ../development/libraries/haskell/hsbencher {};
|
||||
|
||||
hsBibutils = callPackage ../development/libraries/haskell/hs-bibutils {};
|
||||
|
||||
hsc3 = callPackage ../development/libraries/haskell/hsc3 {};
|
||||
|
|
Loading…
Reference in a new issue