Files
nixos/pkgs/kickoff-dot-desktop.nix
Ethan Simmons c0af1940a3 Update ankaa
2025-04-05 19:07:32 -05:00

26 lines
776 B
Nix

{ lib, rustPlatform, fetchFromGitHub }:
rustPlatform.buildRustPackage {
pname = "kickoff-dot-desktop";
version = "0.1.0";
src = fetchFromGitHub {
owner = "j0ru";
repo = "kickoff-dot-desktop";
rev = "ba3e8788c7120c95c4ee963abf3904eb0736cb24";
hash = "sha256-exMmqOkDKuyAEdda8gG/uF3+tnQzhJnOJK+sEtZbsZc=";
};
useFetchCargoVendor = true;
cargoHash = "sha256-4x9kEBnYPhhYej0mNmV7jibw6sH8SxVau9tIkIVTen8=";
meta = with lib; {
description = "Smol program to read in relevant desktop files and print them in a kickoff compatible format";
homepage = "https://github.com/j0ru/kickoff-dot-desktop";
license = licenses.unlicense;
maintainers = [];
};
}