Refactor
All checks were successful
CI / Typos (push) Successful in 8s
CI / Clippy (push) Successful in 54s
CI / Build and test (push) Successful in 52s

This commit is contained in:
2025-05-03 16:42:33 -07:00
parent b8302d3381
commit 64f45a443c
17 changed files with 1229 additions and 996 deletions

16
default.nix Normal file
View File

@ -0,0 +1,16 @@
{ lib, fetchgit, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "pick";
version = "0.0.1";
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";
};
}