2015-06-15 13:10:24 +01:00
|
|
|
{ stdenv, fetchurl, libpng, bison, flex, ffmpeg }:
|
2010-02-22 10:46:49 +00:00
|
|
|
|
2015-06-15 13:10:24 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "cfdg";
|
2018-02-25 22:24:17 +00:00
|
|
|
version = "3.0.9";
|
2015-06-15 13:10:24 +01:00
|
|
|
src = fetchurl {
|
2018-02-25 22:24:17 +00:00
|
|
|
sha256 = "1jqpinz6ri4a2l04mf2z1ljalkdk1m07hj47lqkh8gbf2slfs0jl";
|
2015-06-15 13:10:24 +01:00
|
|
|
url = "http://www.contextfreeart.org/download/ContextFreeSource${version}.tgz";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ libpng bison flex ffmpeg ];
|
2010-02-22 10:46:49 +00:00
|
|
|
|
2015-06-15 13:10:24 +01: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 13:10:24 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
2012-01-18 20:16:00 +00:00
|
|
|
mkdir -p $out/bin
|
2010-02-22 10:46:49 +00:00
|
|
|
cp cfdg $out/bin/
|
|
|
|
|
2019-08-15 13:41:18 +01:00
|
|
|
mkdir -p $out/share/doc/${pname}-${version}
|
|
|
|
cp *.txt $out/share/doc/${pname}-${version}
|
2015-06-15 13:10:24 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2010-02-22 10:46:49 +00:00
|
|
|
description = "Context-free design grammar - a tool for graphics generation";
|
2015-06-15 13:10:24 +01:00
|
|
|
maintainers = with maintainers; [ raskin ];
|
|
|
|
platforms = platforms.linux;
|
2017-08-02 22:50:51 +01:00
|
|
|
homepage = https://contextfreeart.org/;
|
2018-09-11 22:18:44 +01:00
|
|
|
license = licenses.gpl2;
|
2017-08-02 22:50:51 +01:00
|
|
|
downloadPage = "https://contextfreeart.org/mediawiki/index.php/Download_page";
|
2010-02-22 10:46:49 +00:00
|
|
|
};
|
|
|
|
}
|