Merge pull request #223209 from bobby285271/upd/drawing

drawing: 1.0.1 -> 1.0.2
This commit is contained in:
Fabian Affolter 2023-03-26 14:19:06 +02:00 committed by GitHub
commit 72a25e7a02
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -18,15 +18,15 @@
python3.pkgs.buildPythonApplication rec {
pname = "drawing";
version = "1.0.1";
version = "1.0.2";
format = "other";
src = fetchFromGitHub {
owner = "maoschanz";
repo = pname;
rev = version;
sha256 = "sha256-9nosriI3Kdf1M5/TYFWn1jtQTqNKhBcFh7q3E4Uoq4s=";
rev = "refs/tags/${version}";
hash = "sha256-kNF9db8NoHWW1A0WEFQzxHqAQ4A7kxInMRZFJOXQX/k=";
};
nativeBuildInputs = [
@ -64,6 +64,7 @@ python3.pkgs.buildPythonApplication rec {
meta = with lib; {
description = "A free basic image editor, similar to Microsoft Paint, but aiming at the GNOME desktop";
homepage = "https://maoschanz.github.io/drawing/";
changelog = "https://github.com/maoschanz/drawing/releases/tag/${version}";
maintainers = with maintainers; [ mothsart ];
license = licenses.gpl3Plus;
platforms = platforms.linux;