From 6733c3a9ddeabae8f6edc79b4ab695785fe92fe0 Mon Sep 17 00:00:00 2001 From: figsoda Date: Wed, 19 Apr 2023 12:01:31 -0400 Subject: zet: init at 1.0.0 --- pkgs/tools/text/zet/default.nix | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 pkgs/tools/text/zet/default.nix (limited to 'pkgs/tools/text/zet') diff --git a/pkgs/tools/text/zet/default.nix b/pkgs/tools/text/zet/default.nix new file mode 100644 index 0000000000000..50d149f4e6559 --- /dev/null +++ b/pkgs/tools/text/zet/default.nix @@ -0,0 +1,30 @@ +{ lib +, rustPlatform +, fetchFromGitHub +}: + +rustPlatform.buildRustPackage rec { + pname = "zet"; + version = "1.0.0"; + + src = fetchFromGitHub { + owner = "yarrow"; + repo = "zet"; + rev = "v${version}"; + hash = "sha256-IjM+jSb+kdML0zZGuz9+9wrFzQCujn/bg9/vaTzMtUs="; + }; + + cargoHash = "sha256-kHIOsSR7ZxBzp4dtm2hbi8ddtlQ86x5EASk5HFmnhFo="; + + # tests fail with `--release` + # https://github.com/yarrow/zet/pull/7 + checkType = "debug"; + + meta = with lib; { + description = "CLI utility to find the union, intersection, set difference, etc of files considered as sets of lines"; + homepage = "https://github.com/yarrow/zet"; + changelog = "https://github.com/yarrow/zet/blob/${src.rev}/CHANGELOG.md"; + license = with licenses; [ asl20 mit ]; + maintainers = with maintainers; [ figsoda ]; + }; +} -- cgit 1.4.1