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:
commit
96e9a43fad
1 changed files with 36 additions and 0 deletions
36
pkgs/by-name/zr/zrc/package.nix
Normal file
36
pkgs/by-name/zr/zrc/package.nix
Normal 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;
|
||||||
|
};
|
||||||
|
})
|
Loading…
Add table
Add a link
Reference in a new issue