0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 21:50:33 +03:00

zrc: init at 2.1 (#356111)

This commit is contained in:
Arne Keller 2025-04-05 00:09:37 +02:00 committed by GitHub
commit 96e9a43fad
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -0,0 +1,36 @@
{
lib,
stdenv,
fetchFromGitHub,
bison,
flex,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "zrc";
version = "2.1";
src = fetchFromGitHub {
owner = "Edd12321";
repo = "zrc";
tag = "v${finalAttrs.version}";
hash = "sha256-prUbuXyhIJczCvjqwm9pp2n75LY10+6SzYaOHd+S748=";
};
nativeBuildInputs = [
bison
flex
];
makeFlags = [ "PREFIX=$(out)" ];
meta = {
description = "UNIX shell and scripting language with syntax similar to Tcl";
homepage = "https://github.com/Edd12321/zrc";
license = lib.licenses.bsd2;
maintainers = with lib.maintainers; [ fgaz ];
mainProgram = "zrc";
platforms = lib.platforms.all;
broken = stdenv.hostPlatform.isDarwin;
};
})