Skip to content
Snippets Groups Projects
Commit 6da7c3d0 authored by Daniel Firth's avatar Daniel Firth Committed by Raoul Hidalgo Charman
Browse files

Chart: init at 1.9.4

parent 91a7e776
No related merge requests found
......@@ -59,6 +59,7 @@ let packages =
, Cabal-described = callGitCabal "Cabal-described"
, Cabal-syntax = callGitCabal "Cabal-syntax"
, Cabal-tree-diff = callGitCabal "Cabal-tree-diff"
, Chart = H.callHackage "Chart" "1.9.4"
, ChasingBottoms = H.callHackage "ChasingBottoms" "1.3.1.12"
, Decimal = H.callHackage "Decimal" "0.5.2"
, Diff = H.callHackage "Diff" "0.4.1"
......
......@@ -15,6 +15,8 @@ self: with pkgs.haskell.lib; {
Cabal-tree-diff = self.callPackage (./pkgs/Cabal-tree-diff.nix) { };
Chart = self.callPackage (./pkgs/Chart.nix) { };
ChasingBottoms = self.callPackage (./pkgs/ChasingBottoms.nix) { };
Decimal = self.callPackage (./pkgs/Decimal.nix) { };
......
{ mkDerivation
, array
, base
, colour
, data-default-class
, lens
, lib
, mtl
, old-locale
, operational
, time
, vector
}:
mkDerivation {
pname = "Chart";
version = "1.9.4";
sha256 = "35068f14d9100f3156b9d2cd86b928a20ec832f596412203ee65e814888d9d7a";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
array
base
colour
data-default-class
lens
mtl
old-locale
operational
time
vector
];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/timbod7/haskell-chart/wiki";
description = "A library for generating 2D Charts and Plots";
license = lib.licenses.bsd3;
broken = false;
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment