Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
horizon-platform
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Théophile Choutri
horizon-platform
Commits
606f57e8
There was an error fetching the commit references. Please try again later.
Commit
606f57e8
authored
2 years ago
by
Daniel Firth
Browse files
Options
Downloads
Patches
Plain Diff
hledger: init at 1.27.1
parent
4674c025
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
manifest.dhall
+1
-0
1 addition, 0 deletions
manifest.dhall
overlay.nix
+2
-0
2 additions, 0 deletions
overlay.nix
pkgs/hledger.nix
+47
-0
47 additions, 0 deletions
pkgs/hledger.nix
with
50 additions
and
0 deletions
manifest.dhall
+
1
−
0
View file @
606f57e8
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
overlay.nix
+
2
−
0
View file @
606f57e8
...
...
@@ -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
)
{
};
...
...
This diff is collapsed.
Click to expand it.
pkgs/hledger.nix
0 → 100644
+
47
−
0
View file @
606f57e8
{
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
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment