30 lines
758 B
Nix
30 lines
758 B
Nix
|
{ stdenv, fetchurl }:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
pname = "dpic";
|
||
|
version = "2020.03.01";
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "https://ece.uwaterloo.ca/~aplevich/dpic/${pname}-${version}.tar.gz";
|
||
|
sha256 = "1wa1b8m98wdyryf0czn5g3g50znrjcdhsrzpqp6zgwr5w4a086mj";
|
||
|
};
|
||
|
|
||
|
phases = [ "unpackPhase" "buildPhase" "installPhase" ];
|
||
|
|
||
|
makeFlags = [ "CC=${stdenv.cc.outPath}/bin/cc" ];
|
||
|
|
||
|
installPhase = ''
|
||
|
mkdir -p $out/bin
|
||
|
cp -fv dpic $out/bin
|
||
|
'';
|
||
|
|
||
|
meta = {
|
||
|
homepage = "https://ece.uwaterloo.ca/~aplevich/dpic/";
|
||
|
description = "An implementation of the pic little language for creating drawings";
|
||
|
license = stdenv.lib.licenses.bsd2;
|
||
|
maintainers = [ stdenv.lib.maintainers.aespinosa ];
|
||
|
platforms = stdenv.lib.platforms.all;
|
||
|
};
|
||
|
}
|
||
|
|