Merge pull request #324393 from aos/init-raffi

raffi: init at 0.4.0
This commit is contained in:
Aleksana 2024-07-09 11:36:27 +08:00 committed by GitHub
commit 463daad2dd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,40 @@
{ lib
, fetchFromGitHub
, rustPlatform
, makeBinaryWrapper
, fuzzel
, additionalPrograms ? [ ]
}:
rustPlatform.buildRustPackage rec {
pname = "raffi";
version = "0.4.0";
src = fetchFromGitHub {
owner = "chmouel";
repo = "raffi";
rev = "v${version}";
hash = "sha256-i4PM82vGb9Z2pwW006114/h9crokVLUpLxNjr7tgAU8=";
};
cargoHash = "sha256-DS56H2XjEgdXC9TKLjwyfLpFHB9dUThhr8pNFEJuAZE=";
nativeBuildInputs = [
makeBinaryWrapper
];
postFixup = ''
wrapProgram $out/bin/raffi \
--prefix PATH : ${lib.makeBinPath ([ fuzzel ] ++ additionalPrograms)}
'';
meta = {
description = "Fuzzel launcher based on yaml configuration";
homepage = "https://github.com/chmouel/raffi";
changelog = "https://github.com/chmouel/raffi/releases/tag/v${version}";
license = with lib.licenses; [ asl20 ];
maintainers = with lib.maintainers; [ aos ];
mainProgram = "raffi";
platforms = lib.platforms.linux;
};
}