mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
65 lines
1.3 KiB
Nix
65 lines
1.3 KiB
Nix
{ lib
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
, pkg-config
|
|
, wrapGAppsHook4
|
|
, gdk-pixbuf
|
|
, glib
|
|
, gtk4
|
|
, libadwaita
|
|
, libepoxy
|
|
, libGL
|
|
, copyDesktopItems
|
|
, installShellFiles
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "satty";
|
|
version = "0.14.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "gabm";
|
|
repo = "Satty";
|
|
rev = "v${version}";
|
|
hash = "sha256-+NIRWciQISbR8+agDJBH/aHFJ+yCkC6nNFtv+HprrRs=";
|
|
};
|
|
|
|
cargoHash = "sha256-1N45CNeawwcJ1jkkAViElqyCKD4VE7RZJWPQ9EnleGw=";
|
|
|
|
nativeBuildInputs = [
|
|
copyDesktopItems
|
|
pkg-config
|
|
wrapGAppsHook4
|
|
installShellFiles
|
|
];
|
|
|
|
buildInputs = [
|
|
gdk-pixbuf
|
|
glib
|
|
gtk4
|
|
libadwaita
|
|
libepoxy
|
|
libGL
|
|
];
|
|
|
|
postInstall = ''
|
|
install -Dt $out/share/icons/hicolor/scalable/apps/ assets/satty.svg
|
|
|
|
installShellCompletion --cmd satty \
|
|
--bash completions/satty.bash \
|
|
--fish completions/satty.fish \
|
|
--zsh completions/_satty
|
|
'';
|
|
|
|
desktopItems = [ "satty.desktop" ];
|
|
|
|
meta = with lib; {
|
|
description = "Screenshot annotation tool inspired by Swappy and Flameshot";
|
|
homepage = "https://github.com/gabm/Satty";
|
|
license = licenses.mpl20;
|
|
maintainers = with maintainers; [ pinpox donovanglover ];
|
|
mainProgram = "satty";
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|