Merge pull request #131938 from chuahou/update-flameshot-backport-21.05

[21.05] Backport flameshot update from 0.9.0 -> 0.10.1
This commit is contained in:
Guillaume Girol 2021-08-03 21:46:40 +00:00 committed by GitHub
commit 2bd2119bf3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 5 deletions

View File

@ -2,13 +2,13 @@
mkDerivation rec { mkDerivation rec {
pname = "flameshot"; pname = "flameshot";
version = "0.9.0"; version = "0.10.1";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "flameshot-org"; owner = "flameshot-org";
repo = "flameshot"; repo = "flameshot";
rev = "v${version}"; rev = "v${version}";
sha256 = "sha256-E5J61k1tVpbwlzYHbCY1rf9+GODcJRRAQwb0jR4s7BU="; sha256 = "1ncknjayl6am740f49g0lc28z1zsifbicxz1j1kwps3ksj15nl7a";
}; };
nativeBuildInputs = [ cmake qttools qtsvg ]; nativeBuildInputs = [ cmake qttools qtsvg ];
@ -17,8 +17,8 @@ mkDerivation rec {
meta = with lib; { meta = with lib; {
description = "Powerful yet simple to use screenshot software"; description = "Powerful yet simple to use screenshot software";
homepage = "https://github.com/flameshot-org/flameshot"; homepage = "https://github.com/flameshot-org/flameshot";
maintainers = [ maintainers.scode ]; maintainers = with maintainers; [ scode ];
license = lib.licenses.gpl3Plus; license = licenses.gpl3Plus;
platforms = lib.platforms.linux; platforms = platforms.linux;
}; };
} }