flirt: init at 0.2

This commit is contained in:
David Chocholatý 2024-12-05 07:55:20 +01:00
parent 8b5bc060a9
commit 9751944f85
No known key found for this signature in database
GPG Key ID: 8FC8E68432148DCA

View File

@ -0,0 +1,29 @@
{
rustPlatform,
fetchFromSourcehut,
lib,
}:
rustPlatform.buildRustPackage rec {
pname = "flirt";
version = "0.2";
src = fetchFromSourcehut {
owner = "~hadronized";
repo = "flirt";
rev = "v${version}";
hash = "sha256-NV6UP7fPTcn0WrZwIfe1zuZW6hJDuxrfATM2Gpx0yr0=";
};
cargoHash = "sha256-gVtRU+tjwf3rTei/TjUFYSMvLB9g6gNeGYO+9NBxgYQ=";
meta = {
description = "FiLe InteRacT, the file interaction tool for your command line";
homepage = "https://git.sr.ht/~hadronized/flirt";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [
adda
];
mainProgram = "flirt";
};
}