about summary refs log tree commit diff
path: root/pkgs/development/tools/jql
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2023-03-14 09:22:53 +0100
committerGitHub <noreply@github.com>2023-03-14 09:22:53 +0100
commit2d851c7d97860c3ebce0fda7bc4b5678bd385c94 (patch)
treec2a5e85313ccf1302b916e4062ab9318abb57b96 /pkgs/development/tools/jql
parent1b803334ee027cf4e5bf26a8b9818f0d2fa99523 (diff)
jql: add changelog to meta
Diffstat (limited to 'pkgs/development/tools/jql')
-rw-r--r--pkgs/development/tools/jql/default.nix10
1 files changed, 7 insertions, 3 deletions
diff --git a/pkgs/development/tools/jql/default.nix b/pkgs/development/tools/jql/default.nix
index aab37646f57eb..eea6701b6b5ca 100644
--- a/pkgs/development/tools/jql/default.nix
+++ b/pkgs/development/tools/jql/default.nix
@@ -1,4 +1,7 @@
-{ lib, fetchFromGitHub, rustPlatform }:
+{ lib
+, fetchFromGitHub
+, rustPlatform
+}:
 
 rustPlatform.buildRustPackage rec {
   pname = "jql";
@@ -7,8 +10,8 @@ rustPlatform.buildRustPackage rec {
   src = fetchFromGitHub {
     owner = "yamafaktory";
     repo = pname;
-    rev = "v${version}";
-    sha256 = "sha256-gFPN3aSukh0QMfGLn65icf5ZyYb8Y+r+GMdG2gm2InY=";
+    rev = "refs/tags/v${version}";
+    hash = "sha256-gFPN3aSukh0QMfGLn65icf5ZyYb8Y+r+GMdG2gm2InY=";
   };
 
   cargoHash = "sha256-XJW0TDRJdLwgWDm5ZBSCUj5VS5ZowGCr6tHV0MpZuvI=";
@@ -16,6 +19,7 @@ rustPlatform.buildRustPackage rec {
   meta = with lib; {
     description = "A JSON Query Language CLI tool built with Rust";
     homepage = "https://github.com/yamafaktory/jql";
+    changelog = "https://github.com/yamafaktory/jql/releases/tag/v${version}";
     license = with licenses; [ mit ];
     maintainers = with maintainers; [ akshgpt7 ];
   };