lol

Merge pull request #227082 from figsoda/zet

authored by

figsoda and committed by
GitHub
ec14e439 1c742730

+32
+30
pkgs/tools/text/zet/default.nix
···
··· 1 + { lib 2 + , rustPlatform 3 + , fetchFromGitHub 4 + }: 5 + 6 + rustPlatform.buildRustPackage rec { 7 + pname = "zet"; 8 + version = "1.0.0"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "yarrow"; 12 + repo = "zet"; 13 + rev = "v${version}"; 14 + hash = "sha256-IjM+jSb+kdML0zZGuz9+9wrFzQCujn/bg9/vaTzMtUs="; 15 + }; 16 + 17 + cargoHash = "sha256-kHIOsSR7ZxBzp4dtm2hbi8ddtlQ86x5EASk5HFmnhFo="; 18 + 19 + # tests fail with `--release` 20 + # https://github.com/yarrow/zet/pull/7 21 + checkType = "debug"; 22 + 23 + meta = with lib; { 24 + description = "CLI utility to find the union, intersection, set difference, etc of files considered as sets of lines"; 25 + homepage = "https://github.com/yarrow/zet"; 26 + changelog = "https://github.com/yarrow/zet/blob/${src.rev}/CHANGELOG.md"; 27 + license = with licenses; [ asl20 mit ]; 28 + maintainers = with maintainers; [ figsoda ]; 29 + }; 30 + }
+2
pkgs/top-level/all-packages.nix
··· 14040 14041 zerofree = callPackage ../tools/filesystems/zerofree { }; 14042 14043 zfp = callPackage ../tools/compression/zfp { }; 14044 14045 zfs-autobackup = callPackage ../tools/backup/zfs-autobackup { };
··· 14040 14041 zerofree = callPackage ../tools/filesystems/zerofree { }; 14042 14043 + zet = callPackage ../tools/text/zet { }; 14044 + 14045 zfp = callPackage ../tools/compression/zfp { }; 14046 14047 zfs-autobackup = callPackage ../tools/backup/zfs-autobackup { };