nixpkgs/pkgs/tools/graphics/shotgun/default.nix
novenary fb05424145 maintainers: remove novenary
This only orphans one package for which I am the upstream, and which is
unlikely to change often.
Maybe someone who enjoys the taste of boot more than I do can adopt it.
🥰
2024-04-28 16:35:03 +03:00

25 lines
655 B
Nix

{ lib, rustPlatform, fetchFromGitHub }:
rustPlatform.buildRustPackage rec {
pname = "shotgun";
version = "2.5.1";
src = fetchFromGitHub {
owner = "neXromancers";
repo = pname;
rev = "v${version}";
sha256 = "sha256-sBstFz7cYfwVQpDZeC3wPjzbKU5zQzmnhiWNqiCda1k=";
};
cargoSha256 = "sha256-P6riJgnEe+bNP3cUKNCfIkgKM44XGYSDADnU6w7CFDA=";
meta = with lib; {
description = "Minimal X screenshot utility";
homepage = "https://github.com/neXromancers/shotgun";
license = with licenses; [ mpl20 ];
maintainers = with maintainers; [ figsoda lumi ];
platforms = platforms.linux;
mainProgram = "shotgun";
};
}