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