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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

41 lines
1.0 KiB
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";
2023-08-13 23:30:00 +00:00
version = "3.4.1";
2020-01-26 23:19:00 +00:00
src = fetchFromGitHub {
owner = "MtnViewJohn";
repo = "context-free";
rev = "Version${version}";
2023-08-13 23:30:00 +00:00
sha256 = "sha256-f2VMb0TM50afKf/lGdZBP2z13UrCVgG4/IYi5gnD+ow=";
2015-06-15 12:10:24 +00:00
};
nativeBuildInputs = [ bison flex ];
buildInputs = [ libpng 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 = ''
runHook preInstall
mkdir -p $out/bin
cp cfdg $out/bin/
mkdir -p $out/share/doc/${pname}-${version}
cp *.txt $out/share/doc/${pname}-${version}
runHook postInstall
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/";
license = licenses.gpl2Only;
};
}