mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 20:21:14 +00:00
shiori: init at 1.5.0
This commit is contained in:
parent
67202a95ba
commit
7ebb3f5818
22
pkgs/servers/web-apps/shiori/default.nix
Normal file
22
pkgs/servers/web-apps/shiori/default.nix
Normal file
|
@ -0,0 +1,22 @@
|
|||
{ stdenv, buildGoModule, fetchFromGitHub }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "shiori";
|
||||
version = "1.5.0";
|
||||
|
||||
modSha256 = "142raxqh6mipw0dyhzgc8ha6vn74wdin25qrl1nkd68mpcvsbblg";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "go-shiori";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "13and7gh2882khqppwz3wwq44p7az4bfdfjvlnqcpqyi8xa28pmq";
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Simple bookmark manager built with Go";
|
||||
homepage = "https://github.com/go-shiori/shiori";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ minijackson ];
|
||||
};
|
||||
}
|
|
@ -15240,6 +15240,8 @@ in
|
|||
|
||||
shaarli-material = callPackage ../servers/web-apps/shaarli/material-theme.nix { };
|
||||
|
||||
shiori = callPackage ../servers/web-apps/shiori { };
|
||||
|
||||
matomo = callPackage ../servers/web-apps/matomo { };
|
||||
|
||||
axis2 = callPackage ../servers/http/tomcat/axis2 { };
|
||||
|
|
Loading…
Reference in a new issue