nixel: init at 4.1.0

This commit is contained in:
Kevin Amado 2022-04-04 17:32:07 -05:00
parent 2e80f552f5
commit 6ec6afde81
No known key found for this signature in database
GPG key ID: 320CB4F96FCC0D60
2 changed files with 38 additions and 0 deletions

View file

@ -0,0 +1,36 @@
{ lib
, rustPlatform
, fetchFromGitHub
, testers
, nixel
}:
rustPlatform.buildRustPackage rec {
pname = "nixel";
version = "4.1.0";
src = fetchFromGitHub {
owner = "kamadorueda";
repo = pname;
rev = version;
sha256 = "sha256-dQ3wzBTjteqk9rju+FMAO+ydimnGu24Y2DEDLX/P+1A=";
};
cargoSha256 = "sha256-1OsHs0W3ji9Kgpv7nGY9XyGxJ4c0faN2VuFLsdwkgKY=";
# Package requires a non reproducible submodule
# https://github.com/kamadorueda/nixel/blob/2873bd84bf4fc540d0ae8af062e109cc9ad40454/.gitmodules#L7
doCheck = false;
#
# Let's test it runs
passthru.tests = {
version = testers.testVersion { package = nixel; };
};
meta = with lib; {
description = "Lexer, Parser, Abstract Syntax Tree and Concrete Syntax Tree for the Nix Expressions Language";
homepage = "https://github.com/kamadorueda/nixel";
license = licenses.agpl3Only;
maintainers = with maintainers; [ kamadorueda ];
};
}

View file

@ -4095,6 +4095,8 @@ with pkgs;
nix-direnv = callPackage ../tools/misc/nix-direnv { };
nixel = callPackage ../tools/nix/nixel { };
nix-output-monitor = callPackage ../tools/nix/nix-output-monitor { };
nix-template = callPackage ../tools/package-management/nix-template {