Files
pick/default.nix
Mark b3175e2c1c
All checks were successful
CI / Typos (pull_request) Successful in 10s
CI / Clippy (pull_request) Successful in 38s
CI / Check version (pull_request) Successful in 4s
CI / Build and test (pull_request) Successful in 55s
Fix release
2025-05-04 10:34:12 -07:00

16 lines
427 B
Nix

{ lib, fetchgit, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "pick";
version = "0.0.4";
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";
};
}