18 lines
514 B
Nix
18 lines
514 B
Nix
|
{ lib, rustPlatform }:
|
||
|
rustPlatform.buildRustPackage {
|
||
|
pname = "confwhich";
|
||
|
version = "unstable-2024-05-14";
|
||
|
src = lib.cleanSource ../.;
|
||
|
|
||
|
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;
|
||
|
};
|
||
|
}
|