zrc: init at 2.1 (#356111)

authored by Arne Keller and committed by GitHub 96e9a43f 88186e03

+36
+36
pkgs/by-name/zr/zrc/package.nix
··· 1 + { 2 + lib, 3 + stdenv, 4 + fetchFromGitHub, 5 + bison, 6 + flex, 7 + }: 8 + 9 + stdenv.mkDerivation (finalAttrs: { 10 + pname = "zrc"; 11 + version = "2.1"; 12 + 13 + src = fetchFromGitHub { 14 + owner = "Edd12321"; 15 + repo = "zrc"; 16 + tag = "v${finalAttrs.version}"; 17 + hash = "sha256-prUbuXyhIJczCvjqwm9pp2n75LY10+6SzYaOHd+S748="; 18 + }; 19 + 20 + nativeBuildInputs = [ 21 + bison 22 + flex 23 + ]; 24 + 25 + makeFlags = [ "PREFIX=$(out)" ]; 26 + 27 + meta = { 28 + description = "UNIX shell and scripting language with syntax similar to Tcl"; 29 + homepage = "https://github.com/Edd12321/zrc"; 30 + license = lib.licenses.bsd2; 31 + maintainers = with lib.maintainers; [ fgaz ]; 32 + mainProgram = "zrc"; 33 + platforms = lib.platforms.all; 34 + broken = stdenv.hostPlatform.isDarwin; 35 + }; 36 + })