nix-files/pkgs/additional/sane-screenshot/default.nix

17 lines
435 B
Nix
Raw Normal View History

2024-03-02 05:53:05 +00:00
{ static-nix-shell, copyDesktopItems, makeDesktopItem }:
2024-03-02 02:02:47 +00:00
static-nix-shell.mkBash {
pname = "sane-screenshot";
srcRoot = ./.;
pkgs = [ "libnotify" "swappy" "sway-contrib.grimshot" "util-linux" "wl-clipboard" ];
2024-03-02 05:53:05 +00:00
nativeBuildInputs = [
copyDesktopItems
];
desktopItems = [
(makeDesktopItem {
name = "sane-screenshot";
exec = "sane-screenshot";
desktopName = "interactive screenshotter";
})
];
2024-03-02 02:02:47 +00:00
}