nixpkgs/pkgs/tools/graphics/cfdg/default.nix

33 lines
913 B
Nix
Raw Normal View History

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