summary refs log tree commit diff
path: root/pkgs/tools/graphics
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2021-06-18 12:04:55 +0000
committerGitHub <noreply@github.com>2021-06-18 12:04:55 +0000
commitdd892e7e2fab404d4cdd733e818cd2342140401d (patch)
tree2d4c10f54893f9088a6fcbae118a6b2e92d3ad3b /pkgs/tools/graphics
parentff10be160c68c6949197e7534c52ca78a20d5f42 (diff)
parent3b6c3bee9174dfe56fd0e586449457467abe7116 (diff)
downloadnixpkgs-dd892e7e2fab404d4cdd733e818cd2342140401d.tar
nixpkgs-dd892e7e2fab404d4cdd733e818cd2342140401d.tar.gz
nixpkgs-dd892e7e2fab404d4cdd733e818cd2342140401d.tar.bz2
nixpkgs-dd892e7e2fab404d4cdd733e818cd2342140401d.tar.lz
nixpkgs-dd892e7e2fab404d4cdd733e818cd2342140401d.tar.xz
nixpkgs-dd892e7e2fab404d4cdd733e818cd2342140401d.tar.zst
nixpkgs-dd892e7e2fab404d4cdd733e818cd2342140401d.zip
Merge master into staging-next
Diffstat (limited to 'pkgs/tools/graphics')
-rw-r--r--pkgs/tools/graphics/eplot/default.nix11
1 files changed, 8 insertions, 3 deletions
diff --git a/pkgs/tools/graphics/eplot/default.nix b/pkgs/tools/graphics/eplot/default.nix
index b4dd9cd36d8..2e69bc8a263 100644
--- a/pkgs/tools/graphics/eplot/default.nix
+++ b/pkgs/tools/graphics/eplot/default.nix
@@ -1,7 +1,8 @@
 { lib, stdenv, fetchurl, gnuplot, ruby }:
 
 stdenv.mkDerivation {
-  name = "eplot-2.07";
+  pname = "eplot";
+  version = "2.09";
 
   # Upstream has been contacted (2015-03) regarding providing versioned
   # download URLs. Initial response was positive, but no action yet.
@@ -20,12 +21,16 @@ stdenv.mkDerivation {
   dontUnpack = true;
 
   installPhase = ''
+    runHook preInstall
+
     mkdir -p "$out/bin"
     cp "$src" "$out/bin/eplot"
     cp "$ecSrc" "$out/bin/ec"
     chmod +x "$out/bin/"*
 
     sed -i -e "s|gnuplot -persist|${gnuplot}/bin/gnuplot -persist|" "$out/bin/eplot"
+
+    runHook postInstall
   '';
 
   meta = with lib; {
@@ -39,9 +44,9 @@ stdenv.mkDerivation {
       This package also includes the complementary 'ec' tool (say "extract
       column").
     '';
-    homepage = "http://liris.cnrs.fr/christian.wolf/software/eplot/";
+    homepage = "https://perso.liris.cnrs.fr/christian.wolf/software/eplot/";
     license = licenses.gpl2Plus;
     platforms = platforms.all;
-    maintainers = [ maintainers.bjornfor ];
+    maintainers = with maintainers; [ bjornfor shamilton ];
   };
 }