mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 06:31:02 +00:00
19 lines
594 B
Nix
19 lines
594 B
Nix
{ cabal, colour, dataDefaultClass, lens, mtl, operational, time }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "Chart";
|
|
version = "1.2.3";
|
|
sha256 = "067bahxig5xyd6zasi74k86qb7bxvbs3shjn9fbslhyckxg50q1j";
|
|
buildDepends = [
|
|
colour dataDefaultClass lens mtl operational time
|
|
];
|
|
jailbreak = true;
|
|
meta = {
|
|
homepage = "https://github.com/timbod7/haskell-chart/wiki";
|
|
description = "A library for generating 2D Charts and Plots";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|