Unverified Commit 72a25e7a authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

Merge pull request #223209 from bobby285271/upd/drawing

drawing: 1.0.1 -> 1.0.2
parents baebfeee 38655026
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -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;