diff options
Diffstat (limited to 'pkgs/tools/graphics/feedgnuplot/default.nix')
-rw-r--r-- | pkgs/tools/graphics/feedgnuplot/default.nix | 67 |
1 files changed, 0 insertions, 67 deletions
diff --git a/pkgs/tools/graphics/feedgnuplot/default.nix b/pkgs/tools/graphics/feedgnuplot/default.nix deleted file mode 100644 index 6503a2887ab2..000000000000 --- a/pkgs/tools/graphics/feedgnuplot/default.nix +++ /dev/null @@ -1,67 +0,0 @@ -{ lib -, fetchFromGitHub -, makeWrapper -, makeFontsConf -, freefont_ttf -, gnuplot -, perl -, perlPackages -, stdenv -, shortenPerlShebang -, installShellFiles -}: - -let - - fontsConf = makeFontsConf { fontDirectories = [ freefont_ttf ]; }; - -in - -perlPackages.buildPerlPackage rec { - pname = "feedgnuplot"; - version = "1.61"; - - src = fetchFromGitHub { - owner = "dkogan"; - repo = "feedgnuplot"; - rev = "v${version}"; - sha256 = "sha256-r5rszxr65lSozkUNaqfBn4I4XjLtvQ6T/BG366JXLRM="; - }; - - outputs = [ "out" ]; - - nativeBuildInputs = [ makeWrapper installShellFiles ] ++ lib.optional stdenv.isDarwin shortenPerlShebang; - - buildInputs = [ gnuplot perl ] - ++ (with perlPackages; [ ListMoreUtils IPCRun StringShellQuote ]); - - # Fontconfig error: Cannot load default config file - FONTCONFIG_FILE = fontsConf; - - postPatch = '' - patchShebangs . - ''; - - # Tests require gnuplot 4.6.4 and are completely skipped with gnuplot 5. - doCheck = false; - - postInstall = lib.optionalString stdenv.isDarwin '' - shortenPerlShebang $out/bin/feedgnuplot - '' + '' - wrapProgram $out/bin/feedgnuplot \ - --prefix "PATH" ":" "$PATH" \ - --prefix "PERL5LIB" ":" "$PERL5LIB" - - installShellCompletion --bash --name feedgnuplot.bash completions/bash/feedgnuplot - installShellCompletion --zsh completions/zsh/_feedgnuplot - ''; - - meta = with lib; { - description = "General purpose pipe-oriented plotting tool"; - homepage = "https://github.com/dkogan/feedgnuplot/"; - license = with licenses; [ artistic1 gpl1Plus ]; - platforms = platforms.unix; - maintainers = with maintainers; [ mnacamura ]; - mainProgram = "feedgnuplot"; - }; -} |