mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
81 lines
1.9 KiB
Nix
81 lines
1.9 KiB
Nix
{ lib, stdenv, fetchFromGitHub, bmake, cleanPackaging }:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "kgt";
|
|
version = "2023-06-03";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "katef";
|
|
repo = "kgt";
|
|
# 2023-06-03, no version tags (yet)
|
|
rev = "dc881796aa691f1fddb1d01ec77216b34fe8134d";
|
|
hash = "sha256-Az5995/eGUHFL1C1WAdgh1td3goHUYgzWFeVFz2zb8g=";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
outputs = [ "bin" "doc" "out" ];
|
|
|
|
nativeBuildInputs = [ bmake ];
|
|
enableParallelBuilding = true;
|
|
|
|
makeFlags = [ "-r" "PREFIX=$(bin)" ];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
${cleanPackaging.commonFileActions {
|
|
docFiles = [
|
|
"README.md"
|
|
"LICENCE"
|
|
"examples"
|
|
# TODO: this is just a docbook file, not a mangpage yet
|
|
# https://github.com/katef/kgt/issues/50
|
|
"man"
|
|
"examples"
|
|
"doc"
|
|
];
|
|
noiseFiles = [
|
|
"build/src"
|
|
"build/lib"
|
|
"Makefile"
|
|
"src/**/*.c"
|
|
"src/**/*.h"
|
|
"src/**/Makefile"
|
|
"src/**/lexer.lx"
|
|
"src/**/parser.sid"
|
|
"src/**/parser.act"
|
|
"share/git"
|
|
"share/css"
|
|
"share/xsl"
|
|
".gitignore"
|
|
".gitmodules"
|
|
".gitattributes"
|
|
".github"
|
|
];
|
|
}} $doc/share/doc/kgt
|
|
|
|
install -Dm755 build/bin/kgt $bin/bin/kgt
|
|
rm build/bin/kgt
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
postFixup = ''
|
|
${cleanPackaging.checkForRemainingFiles}
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "BNF wrangling and railroad diagrams";
|
|
longDescription = ''
|
|
KGT: Kate's Grammar Tool
|
|
|
|
Input: Various BNF-like syntaxes
|
|
Output: Various BNF-like syntaxes, AST dumps, and Railroad Syntax Diagrams
|
|
'';
|
|
homepage = "https://github.com/katef/kgt";
|
|
license = licenses.bsd2;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ Profpatsch ];
|
|
};
|
|
|
|
}
|