depot/third_party/nixpkgs/pkgs/by-name/sn/snipaste/package.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

24 lines
625 B
Nix

{
appimageTools,
lib,
fetchurl,
}:
appimageTools.wrapType2 rec {
pname = "snipaste";
version = "2.9-Beta2";
src = fetchurl {
url = "https://download.snipaste.com/archives/Snipaste-${version}-x86_64.AppImage";
hash = "sha256-VJvw3M1Ohfji/PoIxn4gc9KcFl6H1wRYW5Pbf1p5rlg=";
};
meta = with lib; {
description = "Screenshot tools";
homepage = "https://www.snipaste.com/";
license = licenses.unfree;
maintainers = with maintainers; [ luftmensch-luftmensch ];
mainProgram = "snipaste";
platforms = [ "x86_64-linux" ];
sourceProvenance = [ sourceTypes.binaryNativeCode ];
};
}