about summary refs log tree commit diff
path: root/pkgs/servers/web-apps
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2022-12-11 10:51:57 +0100
committerGitHub <noreply@github.com>2022-12-11 10:51:57 +0100
commit48336e0374a6d6e2efdf9351f0d0666f74e2c06e (patch)
treedb7784adc537f0c99f11487ffc8319e15aad5ff4 /pkgs/servers/web-apps
parent5430b0ece9ff933fde23753abcb9233dcf2f3d8c (diff)
snipe-it: add changelog to meta
Diffstat (limited to 'pkgs/servers/web-apps')
-rw-r--r--pkgs/servers/web-apps/snipe-it/default.nix13
1 files changed, 10 insertions, 3 deletions
diff --git a/pkgs/servers/web-apps/snipe-it/default.nix b/pkgs/servers/web-apps/snipe-it/default.nix
index ed3531832cb6f..7593621211c96 100644
--- a/pkgs/servers/web-apps/snipe-it/default.nix
+++ b/pkgs/servers/web-apps/snipe-it/default.nix
@@ -1,4 +1,10 @@
-{ pkgs, stdenv, lib, fetchFromGitHub, dataDir ? "/var/lib/snipe-it", mariadb }:
+{ lib
+, pkgs
+, stdenv
+, fetchFromGitHub
+, dataDir ? "/var/lib/snipe-it"
+, mariadb
+}:
 
 let
   package = (import ./composition.nix {
@@ -33,11 +39,11 @@ in package.override rec {
     owner = "snipe";
     repo = pname;
     rev = "v${version}";
-    sha256 = "sha256-c2hzuNOpvVl+ZriCo3TRl/GHY+LCrIb2GO2U894S2yk=";
+    hash = "sha256-c2hzuNOpvVl+ZriCo3TRl/GHY+LCrIb2GO2U894S2yk=";
   };
 
   meta = with lib; {
-    description = "A free open source IT asset/license management system ";
+    description = "A free open source IT asset/license management system";
     longDescription = ''
       Snipe-IT was made for IT asset management, to enable IT departments to track
       who has which laptop, when it was purchased, which software licenses and accessories
@@ -45,6 +51,7 @@ in package.override rec {
       Details for snipe-it can be found on the official website at https://snipeitapp.com/.
     '';
     homepage = "https://snipeitapp.com/";
+    changelog = "https://github.com/snipe/snipe-it/releases/tag/v${version}";
     license = licenses.agpl3Only;
     maintainers = with maintainers; [ yayayayaka ];
     platforms = platforms.linux;