1bc8594052
The build should work on haskellPlatforms, but an attempt to build it on Darwin generates assertion errors because it somehow ends up depending on the Linux kernel headers. svn path=/nixpkgs/trunk/; revision=27920
14 lines
488 B
Nix
14 lines
488 B
Nix
{cabal, Chart, colour, hledger, hledgerLib, safe}:
|
|
|
|
cabal.mkDerivation (self : {
|
|
pname = "hledger-chart";
|
|
version = "0.14";
|
|
sha256 = "fe321e4e31c72aef22945080323992a0033ae8fb48213ad7b708f86f9e2f6462";
|
|
propagatedBuildInputs = [Chart colour hledger hledgerLib safe];
|
|
meta = {
|
|
description = "generate simple pie chart graphics showing hledger account balances";
|
|
platforms = self.stdenv.lib.platforms.linux;
|
|
maintainers = [ self.stdenv.lib.maintainers.simons ];
|
|
};
|
|
})
|