mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
a9e1911efa
svn path=/nixpkgs/trunk/; revision=29665
25 lines
665 B
Nix
25 lines
665 B
Nix
{ cabal, Chart, cmdargs, colour, hledger, hledgerLib, HUnit, safe
|
|
, time
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "hledger-chart";
|
|
version = "0.16.1";
|
|
sha256 = "1yk563032ir98gqdvxazjjl1alg6q1pflzawh11pr3zrdnriracn";
|
|
isLibrary = false;
|
|
isExecutable = true;
|
|
buildDepends = [
|
|
Chart cmdargs colour hledger hledgerLib HUnit safe time
|
|
];
|
|
meta = {
|
|
homepage = "http://hledger.org";
|
|
description = "A pie chart image generator for the hledger accounting tool";
|
|
license = "GPL";
|
|
platforms = self.stdenv.lib.platforms.linux;
|
|
maintainers = [
|
|
self.stdenv.lib.maintainers.andres
|
|
self.stdenv.lib.maintainers.simons
|
|
];
|
|
};
|
|
})
|