Hackage: upgrade Chart to 0.17, timeplot to 1.0.21 and add Chart-gtk
This commit is contained in:
parent
50a0d55b3e
commit
7a602e5f86
|
@ -0,0 +1,18 @@
|
||||||
|
{ cabal, cairo, Chart, colour, dataAccessor, dataAccessorTemplate
|
||||||
|
, gtk, mtl, time
|
||||||
|
}:
|
||||||
|
|
||||||
|
cabal.mkDerivation (self: {
|
||||||
|
pname = "Chart-gtk";
|
||||||
|
version = "0.17";
|
||||||
|
sha256 = "1i411kdpz75azyhfaryazr0bpij5xcl0y82m9a7k23w8mhybqwc7";
|
||||||
|
buildDepends = [
|
||||||
|
cairo Chart colour dataAccessor dataAccessorTemplate gtk mtl time
|
||||||
|
];
|
||||||
|
meta = {
|
||||||
|
homepage = "https://github.com/timbod7/haskell-chart/wiki";
|
||||||
|
description = "Utility functions for using the chart library with GTK";
|
||||||
|
license = self.stdenv.lib.licenses.bsd3;
|
||||||
|
platforms = self.ghc.meta.platforms;
|
||||||
|
};
|
||||||
|
})
|
|
@ -4,8 +4,8 @@
|
||||||
|
|
||||||
cabal.mkDerivation (self: {
|
cabal.mkDerivation (self: {
|
||||||
pname = "Chart";
|
pname = "Chart";
|
||||||
version = "0.16";
|
version = "0.17";
|
||||||
sha256 = "1mb8hgxj0i5s7l061pfn49m5f6qdwvmgy6ni7jmg85vpy6b7jra3";
|
sha256 = "1ip1a61ryypwfzj6dc6n6pl92rflf7lqf1760ppjyg05q5pn6qxg";
|
||||||
buildDepends = [
|
buildDepends = [
|
||||||
cairo colour dataAccessor dataAccessorTemplate mtl time
|
cairo colour dataAccessor dataAccessorTemplate mtl time
|
||||||
];
|
];
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
|
|
||||||
cabal.mkDerivation (self: {
|
cabal.mkDerivation (self: {
|
||||||
pname = "timeplot";
|
pname = "timeplot";
|
||||||
version = "1.0.20";
|
version = "1.0.21";
|
||||||
sha256 = "0zlpqfd1l1ss9jjjb967a7jnn1h560ygv8zfiikcx6iagsjmysh2";
|
sha256 = "0x9f95w235yijp98xx9nry0ibsxr0iyshk6cd89n51xrk1zpk41l";
|
||||||
isLibrary = false;
|
isLibrary = false;
|
||||||
isExecutable = true;
|
isExecutable = true;
|
||||||
buildDepends = [
|
buildDepends = [
|
||||||
|
|
|
@ -682,6 +682,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
|
||||||
|
|
||||||
Chart = callPackage ../development/libraries/haskell/Chart {};
|
Chart = callPackage ../development/libraries/haskell/Chart {};
|
||||||
|
|
||||||
|
ChartGtk = callPackage ../development/libraries/haskell/Chart-gtk {};
|
||||||
|
|
||||||
ChasingBottoms = callPackage ../development/libraries/haskell/ChasingBottoms {};
|
ChasingBottoms = callPackage ../development/libraries/haskell/ChasingBottoms {};
|
||||||
|
|
||||||
checkers = callPackage ../development/libraries/haskell/checkers {};
|
checkers = callPackage ../development/libraries/haskell/checkers {};
|
||||||
|
|
Loading…
Reference in New Issue