linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / tools / misc / flameshot / default.nix
blobf0ed87bcc22bac810ca792aaa3d236f2c43c6a19
1 { mkDerivation, lib, fetchFromGitHub, qtbase, cmake, qttools, qtsvg }:
3 mkDerivation rec {
4   pname = "flameshot";
5   version = "0.9.0";
7   src = fetchFromGitHub {
8     owner = "flameshot-org";
9     repo = "flameshot";
10     rev = "v${version}";
11     sha256 = "sha256-E5J61k1tVpbwlzYHbCY1rf9+GODcJRRAQwb0jR4s7BU=";
12   };
14   nativeBuildInputs = [ cmake qttools qtsvg ];
15   buildInputs = [ qtbase ];
17   meta = with lib; {
18     description = "Powerful yet simple to use screenshot software";
19     homepage = "https://github.com/flameshot-org/flameshot";
20     maintainers = [ maintainers.scode ];
21     license = lib.licenses.gpl3Plus;
22     platforms = lib.platforms.linux;
23   };