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

36 lines
968 B
Nix
Raw Normal View History

2021-05-17 09:40:22 +00:00
{ lib, stdenv, fetchFromGitHub, libpng, bison, flex, ffmpeg, icu }:
2015-06-15 12:10:24 +00:00
stdenv.mkDerivation rec {
pname = "cfdg";
2020-04-15 16:51:30 +00:00
version = "3.3";
2020-01-26 23:19:00 +00:00
src = fetchFromGitHub {
owner = "MtnViewJohn";
repo = "context-free";
rev = "Version${version}";
2020-04-15 16:51:30 +00:00
sha256 = "13m8npccacmgxbs4il45zw53dskjh53ngv2nxahwqw8shjrws4mh";
2015-06-15 12:10:24 +00:00
};
2021-05-17 09:40:22 +00:00
buildInputs = [ libpng bison flex ffmpeg icu ];
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
2020-01-26 23:19:00 +00:00
sed -e '1i#include <algorithm>' -i src-common/{cfdg,builder,ast}.cpp
2015-06-15 12:10:24 +00:00
'';
installPhase = ''
mkdir -p $out/bin
cp cfdg $out/bin/
mkdir -p $out/share/doc/${pname}-${version}
cp *.txt $out/share/doc/${pname}-${version}
2015-06-15 12:10:24 +00:00
'';
meta = with 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;
2020-01-26 23:19:00 +00:00
homepage = "https://contextfreeart.org/";
2018-09-11 21:18:44 +00:00
license = licenses.gpl2;
};
}