From 48336e0374a6d6e2efdf9351f0d0666f74e2c06e Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 11 Dec 2022 10:51:57 +0100 Subject: [PATCH] snipe-it: add changelog to meta --- pkgs/servers/web-apps/snipe-it/default.nix | 13 ++++++++++--- 1 file 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 ed3531832cb6..7593621211c9 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;