2021-05-17 02:40:22 -07:00
|
|
|
{ lib, stdenv, fetchFromGitHub, libpng, bison, flex, ffmpeg, icu }:
|
2010-02-22 02:46:49 -08:00
|
|
|
|
2015-06-15 05:10:24 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "cfdg";
|
2020-04-15 09:51:30 -07:00
|
|
|
version = "3.3";
|
2020-01-26 15:19:00 -08:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "MtnViewJohn";
|
|
|
|
repo = "context-free";
|
|
|
|
rev = "Version${version}";
|
2020-04-15 09:51:30 -07:00
|
|
|
sha256 = "13m8npccacmgxbs4il45zw53dskjh53ngv2nxahwqw8shjrws4mh";
|
2015-06-15 05:10:24 -07:00
|
|
|
};
|
|
|
|
|
2021-05-17 02:40:22 -07:00
|
|
|
buildInputs = [ libpng bison flex ffmpeg icu ];
|
2010-02-22 02:46:49 -08:00
|
|
|
|
2015-06-15 05:10:24 -07:00
|
|
|
postPatch = ''
|
2012-12-04 02:46:59 -08:00
|
|
|
sed -e "/YY_NO_UNISTD/a#include <stdio.h>" -i src-common/cfdg.l
|
2020-01-26 15:19:00 -08:00
|
|
|
sed -e '1i#include <algorithm>' -i src-common/{cfdg,builder,ast}.cpp
|
2015-06-15 05:10:24 -07:00
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
2012-01-18 12:16:00 -08:00
|
|
|
mkdir -p $out/bin
|
2010-02-22 02:46:49 -08:00
|
|
|
cp cfdg $out/bin/
|
|
|
|
|
2019-08-15 05:41:18 -07:00
|
|
|
mkdir -p $out/share/doc/${pname}-${version}
|
|
|
|
cp *.txt $out/share/doc/${pname}-${version}
|
2015-06-15 05:10:24 -07:00
|
|
|
'';
|
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2010-02-22 02:46:49 -08:00
|
|
|
description = "Context-free design grammar - a tool for graphics generation";
|
2015-06-15 05:10:24 -07:00
|
|
|
maintainers = with maintainers; [ raskin ];
|
|
|
|
platforms = platforms.linux;
|
2020-01-26 15:19:00 -08:00
|
|
|
homepage = "https://contextfreeart.org/";
|
2018-09-11 14:18:44 -07:00
|
|
|
license = licenses.gpl2;
|
2010-02-22 02:46:49 -08:00
|
|
|
};
|
|
|
|
}
|