nixpkgs/pkgs/servers/web-apps/shiori/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
660 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub, nixosTests }:
2019-09-22 14:15:06 +00:00
buildGoModule rec {
pname = "shiori";
2023-08-02 10:14:18 +00:00
version = "1.5.5";
2019-09-22 14:15:06 +00:00
2023-08-02 10:14:18 +00:00
vendorHash = "sha256-suWdtqf5IZntEVD+NHGD6RsL1tjcGH9vh5skISW+aCc=";
2019-09-22 14:15:06 +00:00
doCheck = false;
2019-09-22 14:15:06 +00:00
src = fetchFromGitHub {
owner = "go-shiori";
repo = pname;
rev = "v${version}";
2023-08-02 10:14:18 +00:00
sha256 = "sha256-kGPvCYvLLixEH9qih/F3StUyGPqlKukTWLSw41+Mq8E=";
2019-09-22 14:15:06 +00:00
};
passthru.tests = {
smoke-test = nixosTests.shiori;
};
meta = with lib; {
2019-09-22 14:15:06 +00:00
description = "Simple bookmark manager built with Go";
homepage = "https://github.com/go-shiori/shiori";
license = licenses.mit;
maintainers = with maintainers; [ minijackson ];
};
}