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

horizon-gen-nix: init at 918df757ce5c9244232c1e3a1e05e9d9e3ab4f09

parent ff1b87f6
Branches
Tags
No related merge requests found
......@@ -195,6 +195,11 @@ in [ callHackage "Cabal" "3.8.1.0"
(Some "005568ee024eabee129d9cf4ca331c6da260610b")
(None Text)
, callHackage "hpack" "0.35.0"
, callCabal2nix
"horizon-gen-nix"
"https://gitlab.homotopic.tech/horizon/horizon-gen-nix"
(Some "918df757ce5c9244232c1e3a1e05e9d9e3ab4f09")
(None Text)
, 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; {
hnix = prev.callPackage (./pkgs/hnix.nix) { };
horizon-gen-nix = prev.callPackage (./pkgs/horizon-gen-nix.nix) { };
hourglass = prev.callPackage (./pkgs/hourglass.nix) { };
hpack = prev.callPackage (./pkgs/hpack.nix) { };
......
{ mkDerivation, base, Cabal-syntax, cabal2nix, containers, data-fix
, dhall, directory, fetchgit, language-nix, lens, lib, megaparsec
, path, path-dhall-instance, pretty, text
}:
mkDerivation {
pname = "horizon-gen-nix";
version = "0.1.0.0";
src = fetchgit {
url = "https://gitlab.homotopic.tech/horizon/horizon-gen-nix";
sha256 = "0x10wdjqs411l902i0b5vlr7rw30al2sd6r614yi5g63zrylahs3";
rev = "918df757ce5c9244232c1e3a1e05e9d9e3ab4f09";
fetchSubmodules = true;
};
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
base Cabal-syntax cabal2nix containers data-fix dhall directory
language-nix lens megaparsec path path-dhall-instance pretty text
];
executableHaskellDepends = [ base ];
doHaddock = false;
jailbreak = true;
doCheck = false;
hyperlinkSource = false;
description = "Short description of your package";
license = lib.licenses.bsd3;
mainProgram = "horizon-gen-nix";
}
\ 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