Files
pick/default.nix
Mark 939ccc90fe
Some checks failed
CI / Typos (push) Successful in 7s
CI / Clippy (push) Successful in 48s
CI / Check version (push) Has been skipped
Release / release (push) Failing after 49s
CI / Build and test (push) Successful in 3m53s
v5
2025-05-14 19:16:47 -07:00

16 lines
427 B
Nix

{ lib, fetchgit, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "pick";
version = "0.0.5";
cargoLock.lockFile = src + /Cargo.lock;
src = builtins.fetchGit {
url = "ssh://git@git.betalupi.com:33/Mark/pick.git";
ref = "refs/tags/v${version}";
};
meta = with lib; {
description = "A utility that processes files based on pattern matching rules";
homepage = "hhttps://git.betalupi.com/Mark/pick";
};
}