Skip to content
Snippets Groups Projects
Commit b529b22e authored by Daniel Firth's avatar Daniel Firth
Browse files

hpack: init at 0.35.0

parent cd36bdff
Branches
Tags
No related merge requests found
......@@ -189,6 +189,7 @@ in [ callHackage "Cabal" "3.8.1.0"
"https://github.com/milloni/hnix"
(Some "005568ee024eabee129d9cf4ca331c6da260610b")
(None Text)
, callHackage "hpack" "0.35.0"
, callHackage "hslua-aeson" "2.2.1"
, callHackage "hspec" "2.10.3"
, callHackage "hspec-core" "2.10.0.1"
......
......@@ -205,6 +205,8 @@ final: prev: with pkgs.haskell.lib; {
hourglass = prev.callPackage (./pkgs/hourglass.nix) { };
hpack = prev.callPackage (./pkgs/hpack.nix) { };
hslua-aeson = prev.callPackage (./pkgs/hslua-aeson.nix) { };
hspec = prev.callPackage (./pkgs/hspec.nix) { };
......
{ mkDerivation, aeson, base, bifunctors, bytestring, Cabal
, containers, cryptonite, deepseq, directory, filepath, Glob, hspec
, hspec-discover, http-client, http-client-tls, http-types, HUnit
, infer-license, interpolate, lib, mockery, pretty, QuickCheck
, scientific, template-haskell, temporary, text, transformers
, unordered-containers, vector, yaml
}:
mkDerivation {
pname = "hpack";
version = "0.35.0";
sha256 = "c6bdbc2d48dac398d3c35120a11455f507639f275befc4fda0a26662db2231b2";
revision = "1";
editedCabalFile = "1x0rmra2fpfzmhhw090iila2drfdmb1y28ybypmgbi0asa1zl751";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
aeson base bifunctors bytestring Cabal containers cryptonite
deepseq directory filepath Glob http-client http-client-tls
http-types infer-license pretty scientific text transformers
unordered-containers vector yaml
];
executableHaskellDepends = [
aeson base bifunctors bytestring Cabal containers cryptonite
deepseq directory filepath Glob http-client http-client-tls
http-types infer-license pretty scientific text transformers
unordered-containers vector yaml
];
testHaskellDepends = [
aeson base bifunctors bytestring Cabal containers cryptonite
deepseq directory filepath Glob hspec http-client http-client-tls
http-types HUnit infer-license interpolate mockery pretty
QuickCheck scientific template-haskell temporary text transformers
unordered-containers vector yaml
];
testToolDepends = [ hspec-discover ];
doHaddock = false;
jailbreak = true;
doCheck = false;
hyperlinkSource = false;
homepage = "https://github.com/sol/hpack#readme";
description = "A modern format for Haskell packages";
license = lib.licenses.mit;
mainProgram = "hpack";
}
\ No newline at end of file
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment