eplot: 2.07 -> 2.09 (#126937)

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>

authored by SCOTT-HAMILTON Sandro and committed by GitHub 9f097971 b6eb4a0b

+8 -3
+8 -3
pkgs/tools/graphics/eplot/default.nix
··· 1 1 { lib, stdenv, fetchurl, gnuplot, ruby }: 2 2 3 3 stdenv.mkDerivation { 4 - name = "eplot-2.07"; 4 + pname = "eplot"; 5 + version = "2.09"; 5 6 6 7 # Upstream has been contacted (2015-03) regarding providing versioned 7 8 # download URLs. Initial response was positive, but no action yet. ··· 20 21 dontUnpack = true; 21 22 22 23 installPhase = '' 24 + runHook preInstall 25 + 23 26 mkdir -p "$out/bin" 24 27 cp "$src" "$out/bin/eplot" 25 28 cp "$ecSrc" "$out/bin/ec" 26 29 chmod +x "$out/bin/"* 27 30 28 31 sed -i -e "s|gnuplot -persist|${gnuplot}/bin/gnuplot -persist|" "$out/bin/eplot" 32 + 33 + runHook postInstall 29 34 ''; 30 35 31 36 meta = with lib; { ··· 39 44 This package also includes the complementary 'ec' tool (say "extract 40 45 column"). 41 46 ''; 42 - homepage = "http://liris.cnrs.fr/christian.wolf/software/eplot/"; 47 + homepage = "https://perso.liris.cnrs.fr/christian.wolf/software/eplot/"; 43 48 license = licenses.gpl2Plus; 44 49 platforms = platforms.all; 45 - maintainers = [ maintainers.bjornfor ]; 50 + maintainers = with maintainers; [ bjornfor shamilton ]; 46 51 }; 47 52 }