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

25 lines
662 B
Nix
Raw Normal View History

2020-10-14 18:59:19 +00:00
{ mkDerivation, lib, fetchFromGitHub, qtbase, cmake, qttools, qtsvg }:
2018-01-21 06:47:57 +00:00
mkDerivation rec {
pname = "flameshot";
2021-02-28 12:05:38 +00:00
version = "0.9.0";
2018-01-21 06:47:57 +00:00
src = fetchFromGitHub {
2020-10-14 18:59:19 +00:00
owner = "flameshot-org";
2018-01-21 06:47:57 +00:00
repo = "flameshot";
rev = "v${version}";
2021-02-28 12:05:38 +00:00
sha256 = "sha256-E5J61k1tVpbwlzYHbCY1rf9+GODcJRRAQwb0jR4s7BU=";
2018-01-21 06:47:57 +00:00
};
2020-10-14 18:59:19 +00: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";
2018-01-21 06:47:57 +00:00
maintainers = [ maintainers.scode ];
2020-10-14 18:59:19 +00:00
license = lib.licenses.gpl3Plus;
platforms = lib.platforms.linux;
2018-01-21 06:47:57 +00:00
};
}