nixpkgs/pkgs/tools/misc/flameshot/default.nix

39 lines
786 B
Nix
Raw Normal View History

{ mkDerivation
, lib
, fetchFromGitHub
, qtbase
, cmake
, qttools
, qtsvg
, nix-update-script
}:
2018-01-21 06:47:57 +00:00
mkDerivation rec {
pname = "flameshot";
2022-01-15 11:38:49 +00:00
version = "11.0.0";
2018-01-21 06:47:57 +00:00
src = fetchFromGitHub {
2020-10-14 19:59:19 +01:00
owner = "flameshot-org";
2018-01-21 06:47:57 +00:00
repo = "flameshot";
rev = "v${version}";
2022-01-15 11:38:49 +00:00
sha256 = "sha256-SlnEXW3Uhdgl0icwYyYsKQOcYkAtHpAvL6LMXBF2gWM=";
2018-01-21 06:47:57 +00:00
};
passthru = {
updateScript = nix-update-script {
attrPath = pname;
};
};
2020-10-14 19:59:19 +01:00
nativeBuildInputs = [ cmake qttools qtsvg ];
buildInputs = [ qtbase ];
meta = with lib; {
2018-01-21 06:47:57 +00:00
description = "Powerful yet simple to use screenshot software";
homepage = "https://github.com/flameshot-org/flameshot";
maintainers = with maintainers; [ scode oxalica ];
2021-07-19 12:08:08 +01:00
license = licenses.gpl3Plus;
platforms = platforms.linux;
2018-01-21 06:47:57 +00:00
};
}