deskwhich/nix/package.nix
Grimmauld 2ab7770181
CLEANUP
- dropped cursed rust devshell in favour of rust overlay
- dropped cargo hash in favour of lock file reference (doesn't break anymore :)
- add formatter to flake outputs
- nix fmt (rfc style)
- nix flake update
- cargo fmt
- cargo update
2024-11-29 19:12:09 +01:00

17 lines
481 B
Nix

{ lib, rustPlatform }:
rustPlatform.buildRustPackage {
pname = "deskwhich";
version = "0-unstable-2024-11-29";
src = lib.cleanSource ../.;
cargoLock.lockFile = ../Cargo.lock;
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;
};
}