deskwhich/nix/package.nix
2024-05-19 13:23:02 +02:00

18 lines
510 B
Nix

{ lib, rustPlatform }:
rustPlatform.buildRustPackage {
pname = "deskwhich";
version = "unstable-2024-05-19";
src = lib.cleanSource ../.;
cargoHash = "sha256-l7xlDrAvPtf+747DWRLu2d/O0Thvj6gKtoMksGmj02o=";
meta = {
description = "tool to find the path of desktop entries";
homepage = "https://codeberg.org/axtlos/deskwhich";
license = lib.licenses.gpl3Only;
mainProgram = "deskwhich";
maintainers = with lib.maintainers; [ grimmauld ];
platforms = lib.platforms.linux;
};
}