nixpkgs/pkgs/tools/graphics/cfdg/default.nix
Ryan Mulligan b69d2795a9 cfdg: 3.0.2 -> 3.0.9
Semi-automatic update. These checks were performed:

- built on NixOS
- found 3.0.9 with grep in /nix/store/b7l7794afvg9xgymkd6c3lwk5r4qnahc-cfdg-3.0.9
- found 3.0.9 in filename of file in /nix/store/b7l7794afvg9xgymkd6c3lwk5r4qnahc-cfdg-3.0.9
2018-02-25 14:24:17 -08:00

33 lines
913 B
Nix

{ stdenv, fetchurl, libpng, bison, flex, ffmpeg }:
stdenv.mkDerivation rec {
name = "cfdg-${version}";
version = "3.0.9";
src = fetchurl {
sha256 = "1jqpinz6ri4a2l04mf2z1ljalkdk1m07hj47lqkh8gbf2slfs0jl";
url = "http://www.contextfreeart.org/download/ContextFreeSource${version}.tgz";
};
buildInputs = [ libpng bison flex ffmpeg ];
postPatch = ''
sed -e "/YY_NO_UNISTD/a#include <stdio.h>" -i src-common/cfdg.l
'';
installPhase = ''
mkdir -p $out/bin
cp cfdg $out/bin/
mkdir -p $out/share/doc/${name}
cp *.txt $out/share/doc/${name}
'';
meta = with stdenv.lib; {
description = "Context-free design grammar - a tool for graphics generation";
maintainers = with maintainers; [ raskin ];
platforms = platforms.linux;
homepage = https://contextfreeart.org/;
downloadPage = "https://contextfreeart.org/mediawiki/index.php/Download_page";
};
}