nixel: init at 4.1.0

main
Kevin Amado 2 years ago
parent 2e80f552f5
commit 6ec6afde81
No known key found for this signature in database
GPG Key ID: 320CB4F96FCC0D60
  1. 36
      pkgs/tools/nix/nixel/default.nix
  2. 2
      pkgs/top-level/all-packages.nix

@ -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 ];
};
}

@ -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 {

Loading…
Cancel
Save