mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
Add haskell-gnuplot-0.5.2
This commit is contained in:
parent
e38341fee2
commit
bb2d066140
22
pkgs/development/libraries/haskell/gnuplot/default.nix
Normal file
22
pkgs/development/libraries/haskell/gnuplot/default.nix
Normal file
@ -0,0 +1,22 @@
|
||||
{ cabal, dataAccessor, dataAccessorTransformers, deepseq, filepath
|
||||
, temporary, time, transformers, utilityHt
|
||||
}:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "gnuplot";
|
||||
version = "0.5.2";
|
||||
sha256 = "11gma33bikx97jra04vgnhikylw9wm1l37hdrsknl7mgk2qbrs74";
|
||||
isLibrary = true;
|
||||
isExecutable = true;
|
||||
buildDepends = [
|
||||
dataAccessor dataAccessorTransformers deepseq filepath temporary
|
||||
time transformers utilityHt
|
||||
];
|
||||
jailbreak = true;
|
||||
meta = {
|
||||
homepage = "http://www.haskell.org/haskellwiki/Gnuplot";
|
||||
description = "2D and 3D plots using gnuplot";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
};
|
||||
})
|
@ -1227,6 +1227,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.finalReturn x
|
||||
|
||||
gnuidn = callPackage ../development/libraries/haskell/gnuidn {};
|
||||
|
||||
gnuplot = callPackage ../development/libraries/haskell/gnuplot {};
|
||||
|
||||
gnutls = callPackage ../development/libraries/haskell/gnutls { inherit (pkgs) gnutls; };
|
||||
|
||||
gsasl = callPackage ../development/libraries/haskell/gsasl { inherit (pkgs) gsasl; };
|
||||
|
Loading…
Reference in New Issue
Block a user