···1-{ pkgs, stdenv, lib, fetchFromGitHub, dataDir ? "/var/lib/snipe-it", mariadb }:
00000023let
4 package = (import ./composition.nix {
···2728in package.override rec {
29 pname = "snipe-it";
30- version = "6.0.13";
3132 src = fetchFromGitHub {
33 owner = "snipe";
34 repo = pname;
35 rev = "v${version}";
36- sha256 = "sha256-QwPl3JXB8gZS1/VyPBCc3PIQa+qtUNpuANSx4+oxWYg=";
37 };
3839 meta = with lib; {
40- description = "A free open source IT asset/license management system ";
41 longDescription = ''
42 Snipe-IT was made for IT asset management, to enable IT departments to track
43 who has which laptop, when it was purchased, which software licenses and accessories
···45 Details for snipe-it can be found on the official website at https://snipeitapp.com/.
46 '';
47 homepage = "https://snipeitapp.com/";
048 license = licenses.agpl3Only;
49 maintainers = with maintainers; [ yayayayaka ];
50 platforms = platforms.linux;
···1+{ lib
2+, pkgs
3+, stdenv
4+, fetchFromGitHub
5+, dataDir ? "/var/lib/snipe-it"
6+, mariadb
7+}:
89let
10 package = (import ./composition.nix {
···3334in package.override rec {
35 pname = "snipe-it";
36+ version = "6.0.14";
3738 src = fetchFromGitHub {
39 owner = "snipe";
40 repo = pname;
41 rev = "v${version}";
42+ hash = "sha256-c2hzuNOpvVl+ZriCo3TRl/GHY+LCrIb2GO2U894S2yk=";
43 };
4445 meta = with lib; {
46+ description = "A free open source IT asset/license management system";
47 longDescription = ''
48 Snipe-IT was made for IT asset management, to enable IT departments to track
49 who has which laptop, when it was purchased, which software licenses and accessories
···51 Details for snipe-it can be found on the official website at https://snipeitapp.com/.
52 '';
53 homepage = "https://snipeitapp.com/";
54+ changelog = "https://github.com/snipe/snipe-it/releases/tag/v${version}";
55 license = licenses.agpl3Only;
56 maintainers = with maintainers; [ yayayayaka ];
57 platforms = platforms.linux;