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

horizon-spec: init at 0.4.1

parent f87304d4
Branches
Tags
No related merge requests found
......@@ -378,6 +378,7 @@ in H.HorizonExport.MakePackageSet
, H.callHackage "hledger" "1.27.1"
, H.callHackage "hlint" "3.5"
, H.callHackage "hopenssl" "2.2.4"
, H.callHackage "horizon-spec" "0.4.1"
, H.callHackage "hosc" "0.19.1"
, H.callHackage "hostname" "1.0"
, H.callHackage "hourglass" "0.2.12"
......
......@@ -587,6 +587,8 @@ self: with pkgs.haskell.lib; {
horizon-gen-nix = self.callPackage (./pkgs/horizon-gen-nix.nix) { };
horizon-spec = self.callPackage (./pkgs/horizon-spec.nix) { };
hosc = self.callPackage (./pkgs/hosc.nix) { };
hostname = self.callPackage (./pkgs/hostname.nix) { };
......
{ mkDerivation
, base
, containers
, dhall
, lib
, path
, path-dhall-instance
, prettyprinter
, sydtest
, text
}:
mkDerivation {
pname = "horizon-spec";
version = "0.4.1";
sha256 = "4cf5ba59489bca20edf7c82c69ce565c69c900c863bf3f335c887f6784e929f7";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
base
containers
dhall
path
path-dhall-instance
text
];
executableHaskellDepends = [
base
dhall
prettyprinter
sydtest
text
];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://horizon-haskell.net";
description = "Horizon Stable Package Set Type Definitions";
license = lib.licenses.mit;
broken = false;
}
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