mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
29946c6c21
https://github.com/snipe/snipe-it/releases/tag/v6.0.6 https://github.com/snipe/snipe-it/releases/tag/v6.0.7
44 lines
1.4 KiB
Nix
44 lines
1.4 KiB
Nix
{ pkgs, stdenv, lib, fetchFromGitHub, dataDir ? "/var/lib/snipe-it" }:
|
|
|
|
let
|
|
package = (import ./composition.nix {
|
|
inherit pkgs;
|
|
inherit (stdenv.hostPlatform) system;
|
|
noDev = true; # Disable development dependencies
|
|
}).overrideAttrs (attrs : {
|
|
installPhase = attrs.installPhase + ''
|
|
rm -R $out/storage $out/public/uploads $out/bootstrap/cache
|
|
ln -s ${dataDir}/.env $out/.env
|
|
ln -s ${dataDir}/storage $out/
|
|
ln -s ${dataDir}/public/uploads $out/public/uploads
|
|
ln -s ${dataDir}/bootstrap/cache $out/bootstrap/cache
|
|
chmod +x $out/artisan
|
|
'';
|
|
});
|
|
|
|
in package.override rec {
|
|
pname = "snipe-it";
|
|
version = "6.0.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "snipe";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "09jvkz7j2qb79mjnyrz75015xpgf8l483yha3ma14pzk4pibn620";
|
|
};
|
|
|
|
meta = with lib; {
|
|
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
|
|
are available, and so on.
|
|
Details for snipe-it can be found on the official website at https://snipeitapp.com/.
|
|
'';
|
|
homepage = "https://snipeitapp.com/";
|
|
license = licenses.agpl3Only;
|
|
maintainers = with maintainers; [ yayayayaka ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|