deskwhich/nix/package.nix

18 lines
510 B
Nix
Raw Normal View History

2024-05-19 13:22:30 +02:00
{ lib, rustPlatform }:
rustPlatform.buildRustPackage {
pname = "deskwhich";
version = "unstable-2024-05-19";
src = lib.cleanSource ../.;
2024-06-03 21:09:24 +02:00
cargoHash = "sha256-FnJQJ7VC+xkySD4BgF2DSaKlgM7bPhHGBhnfFhRnMxs=";
2024-05-19 13:22:30 +02:00
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;
};
}