summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuillaume Girol <symphorien@users.noreply.github.com>2021-08-03 21:46:40 +0000
committerGitHub <noreply@github.com>2021-08-03 21:46:40 +0000
commit2bd2119bf3f6fec115af8e3e4755d915037c1ae1 (patch)
tree8a85c60a707bfafb92ec93442e499d16eb58beeb
parentMerge pull request #132577 from NixOS/backport-132575-to-release-21.05 (diff)
parentMerge pull request #131536 from chuahou/update-flameshot (diff)
downloadnixpkgs-2bd2119bf3f6fec115af8e3e4755d915037c1ae1.tar.gz
Merge pull request #131938 from chuahou/update-flameshot-backport-21.05
[21.05] Backport flameshot update from 0.9.0 -> 0.10.1
-rw-r--r--pkgs/tools/misc/flameshot/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/tools/misc/flameshot/default.nix b/pkgs/tools/misc/flameshot/default.nix
index f0ed87bcc22b..8e17111ce8e5 100644
--- a/pkgs/tools/misc/flameshot/default.nix
+++ b/pkgs/tools/misc/flameshot/default.nix
@@ -2,13 +2,13 @@
mkDerivation rec {
pname = "flameshot";
- version = "0.9.0";
+ version = "0.10.1";
src = fetchFromGitHub {
owner = "flameshot-org";
repo = "flameshot";
rev = "v${version}";
- sha256 = "sha256-E5J61k1tVpbwlzYHbCY1rf9+GODcJRRAQwb0jR4s7BU=";
+ sha256 = "1ncknjayl6am740f49g0lc28z1zsifbicxz1j1kwps3ksj15nl7a";
};
nativeBuildInputs = [ cmake qttools qtsvg ];
@@ -17,8 +17,8 @@ mkDerivation rec {
meta = with lib; {
description = "Powerful yet simple to use screenshot software";
homepage = "https://github.com/flameshot-org/flameshot";
- maintainers = [ maintainers.scode ];
- license = lib.licenses.gpl3Plus;
- platforms = lib.platforms.linux;
+ maintainers = with maintainers; [ scode ];
+ license = licenses.gpl3Plus;
+ platforms = platforms.linux;
};
}