flirt: init at 0.2 (#362189)

This commit is contained in:
misuzu 2024-12-05 22:51:05 +02:00 committed by GitHub
commit 2e0d114024
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 36 additions and 0 deletions

View File

@ -537,6 +537,13 @@
githubId = 749381;
name = "Adam Tulinius";
};
adda = {
email = "chocholaty.david@protonmail.com";
matrix = "@adda0:matrix.org";
github = "adda0";
githubId = 52529234;
name = "David Chocholatý";
};
addict3d = {
email = "nickbathum@gmail.com";
matrix = "@nbathum:matrix.org";

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";
};
}