mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-30 01:20:40 +00:00
18 lines
572 B
Nix
18 lines
572 B
Nix
{ cabal, colour, dataDefaultClass, lens, mtl, operational, time }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "Chart";
|
|
version = "1.2";
|
|
sha256 = "0cvp2j2hgsdk93f4rbd8y7s11hlr3zg15qkpxhd7p7sl2k6j2r5x";
|
|
buildDepends = [
|
|
colour dataDefaultClass lens mtl operational time
|
|
];
|
|
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 ];
|
|
};
|
|
})
|