nixpkgs/pkgs/by-name/c-/c-graph/package.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

27 lines
718 B
Nix

{ lib, stdenv, fetchurl, gfortran, gnuplot, makeWrapper }:
stdenv.mkDerivation rec {
pname = "c-graph";
version = "2.0.1";
src = fetchurl {
url = "mirror://gnu/c-graph/c-graph-${version}.tar.gz";
hash = "sha256-LSZ948nXXY3pXltR2hHnql6YEpHumjTvbtz4/qUIRCQ=";
};
nativeBuildInputs = [ gfortran makeWrapper ];
postInstall = ''
wrapProgram $out/bin/c-graph --prefix PATH : ${lib.makeBinPath [ gnuplot ]}
'';
meta = with lib; {
description = "Tool for Learning about Convolution";
homepage = "https://www.gnu.org/software/c-graph/";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ sikmir ];
platforms = platforms.unix;
mainProgram = "c-graph";
};
}