about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2023-03-26 12:01:40 +0200
committerGitHub <noreply@github.com>2023-03-26 12:01:40 +0200
commit386550260996d834b544b61cb7ec12ad82429245 (patch)
tree948c8299747101488d545bef38324d773305f53a
parent6ca69ac3eed2b70a2d4d59d7b2878cc4dab99a9d (diff)
drawing: add changelog to meta
-rw-r--r--pkgs/applications/graphics/drawing/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/applications/graphics/drawing/default.nix b/pkgs/applications/graphics/drawing/default.nix
index 272f640bca7b1..693c0b213b544 100644
--- a/pkgs/applications/graphics/drawing/default.nix
+++ b/pkgs/applications/graphics/drawing/default.nix
@@ -25,8 +25,8 @@ python3.pkgs.buildPythonApplication rec {
   src = fetchFromGitHub {
     owner = "maoschanz";
     repo = pname;
-    rev = version;
-    sha256 = "sha256-kNF9db8NoHWW1A0WEFQzxHqAQ4A7kxInMRZFJOXQX/k=";
+    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;