mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 06:06:13 +03:00
c-graph: init at 2.0.1
This commit is contained in:
parent
3c43b81701
commit
e4ed48d695
26
pkgs/by-name/c-/c-graph/package.nix
Normal file
26
pkgs/by-name/c-/c-graph/package.nix
Normal file
@ -0,0 +1,26 @@
|
||||
{ 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 = "A 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";
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user