Merge pull request #227808 from fgaz/n2/init

n2: init at unstable-2022-12-21

authored by Francesco Gazzetta and committed by GitHub ce78c598 54d3ae13

+26
+26
pkgs/by-name/n2/n2/package.nix
··· 1 + { lib 2 + , rustPlatform 3 + , fetchFromGitHub 4 + }: 5 + 6 + rustPlatform.buildRustPackage { 7 + pname = "n2"; 8 + version = "unstable-2023-10-10"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "evmar"; 12 + repo = "n2"; 13 + rev = "90041c1f010d27464e3b18e38440ed9855ea62ef"; 14 + hash = "sha256-svJPcriSrqloJlr7pIp/k84O712l4ZEPlSr58GPANXY="; 15 + }; 16 + 17 + cargoHash = "sha256-jrIo0N3o2fYe3NgNG33shkMd0rJxi5evtidCL9BcfVc="; 18 + 19 + meta = with lib; { 20 + homepage = "https://github.com/evmar/n2"; 21 + description = "A ninja compatible build system"; 22 + license = licenses.asl20; 23 + maintainers = with maintainers; [ fgaz ]; 24 + platforms = platforms.all; 25 + }; 26 + }