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

hledger: init at 1.27.1

parent 4674c025
No related merge requests found
......@@ -244,6 +244,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "hie-compat" "0.3.0.0"
, callHackage "hiedb" "0.4.2.0"
, callHackage "hledger-lib" "1.27.1"
, callHackage "hledger" "1.27.1"
, callHackage "hlint" "3.5"
, callHackage "hourglass" "0.2.12"
, callCabal2nix
......
......@@ -273,6 +273,8 @@ final: prev: with pkgs.haskell.lib; {
hiedb = prev.callPackage (./pkgs/hiedb.nix) { };
hledger = prev.callPackage (./pkgs/hledger.nix) { };
hledger-lib = prev.callPackage (./pkgs/hledger-lib.nix) { };
hlint = prev.callPackage (./pkgs/hlint.nix) { };
......
{ mkDerivation, aeson, ansi-terminal, base, breakpoint, bytestring
, cmdargs, containers, data-default, Decimal, Diff, directory
, extra, filepath, githash, hashable, haskeline, hledger-lib, lib
, lucid, math-functions, megaparsec, microlens, mtl, process
, regex-tdfa, safe, shakespeare, split, tabular, tasty, temporary
, terminfo, text, time, timeit, transformers, unordered-containers
, utf8-string, utility-ht, wizards
}:
mkDerivation {
pname = "hledger";
version = "1.27.1";
sha256 = "0bb7f637c5dfe0deaf6ea463b68a23fc08c4d581e78a81319e5e687fea41af61";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
aeson ansi-terminal base breakpoint bytestring cmdargs containers
data-default Decimal Diff directory extra filepath githash hashable
haskeline hledger-lib lucid math-functions megaparsec microlens mtl
process regex-tdfa safe shakespeare split tabular tasty temporary
terminfo text time timeit transformers unordered-containers
utf8-string utility-ht wizards
];
executableHaskellDepends = [
aeson ansi-terminal base breakpoint bytestring cmdargs containers
data-default Decimal directory extra filepath githash haskeline
hledger-lib math-functions megaparsec microlens mtl process
regex-tdfa safe shakespeare split tabular tasty temporary terminfo
text time timeit transformers unordered-containers utf8-string
utility-ht wizards
];
testHaskellDepends = [
aeson ansi-terminal base breakpoint bytestring cmdargs containers
data-default Decimal directory extra filepath githash haskeline
hledger-lib math-functions megaparsec microlens mtl process
regex-tdfa safe shakespeare split tabular tasty temporary terminfo
text time timeit transformers unordered-containers utf8-string
utility-ht wizards
];
doHaddock = false;
jailbreak = true;
doCheck = false;
hyperlinkSource = false;
homepage = "http://hledger.org";
description = "Command-line interface for the hledger accounting system";
license = lib.licenses.gpl3Only;
mainProgram = "hledger";
}
\ 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