mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-11 08:13:04 +00:00
25 lines
628 B
Nix
25 lines
628 B
Nix
{
|
|
appimageTools,
|
|
lib,
|
|
fetchurl,
|
|
}:
|
|
appimageTools.wrapType2 rec {
|
|
pname = "snipaste";
|
|
version = "2.9.2-Beta";
|
|
|
|
src = fetchurl {
|
|
url = "https://download.snipaste.com/archives/Snipaste-${version}-x86_64.AppImage";
|
|
hash = "sha256-oV69uABjzkbQdwb+1wRRxszhrwI4uyzhQZ4aXBnyeo8=";
|
|
};
|
|
|
|
meta = {
|
|
description = "Screenshot tools";
|
|
homepage = "https://www.snipaste.com/";
|
|
license = lib.licenses.unfree;
|
|
maintainers = with lib.maintainers; [ luftmensch-luftmensch ];
|
|
mainProgram = "snipaste";
|
|
platforms = [ "x86_64-linux" ];
|
|
sourceProvenance = [ lib.sourceTypes.binaryNativeCode ];
|
|
};
|
|
}
|