29 lines
740 B
Nix
29 lines
740 B
Nix
|
{
|
||
|
lib,
|
||
|
rustPlatform,
|
||
|
fetchFromGitea,
|
||
|
}:
|
||
|
rustPlatform.buildRustPackage {
|
||
|
pname = "confwhich";
|
||
|
version = "unstable-2024-05-14";
|
||
|
|
||
|
src = fetchFromGitea {
|
||
|
domain = "git.grimmauld.de";
|
||
|
owner = "Grimmauld";
|
||
|
repo = "confwhich";
|
||
|
rev = "e561b82d1e2b0d0998ccbef316014297f3468fb6";
|
||
|
hash = "sha256-dMkUJMQjlKzmSsgtH0xOZ5Bk654+h84M1cTx8hVM5SQ=";
|
||
|
};
|
||
|
|
||
|
cargoHash = "sha256-cn9vtRO+negpIVs0rnp2y5q7L4w554dfBK9MtbWd8FA=";
|
||
|
|
||
|
meta = {
|
||
|
description = "tool to find the path of xdg config files";
|
||
|
homepage = "https://git.grimmauld.de/Grimmauld/confwhich";
|
||
|
license = lib.licenses.bsd3;
|
||
|
mainProgram = "confwhich";
|
||
|
maintainers = with lib.maintainers; [ grimmauld ];
|
||
|
platforms = lib.platforms.linux;
|
||
|
};
|
||
|
}
|