hockeypuck-web 2.1.0 -> 2.1.2 https://github.com/hockeypuck/hockeypuck/releases attrpath: hockeypuck-web Checking auto update branch... No auto update branch exists Old version 2.1.0" not present in master derivation file with contents: { stdenv, lib, fetchFromGitHub, nixosTests }: let sources = (import ./sources.nix) { inherit fetchFromGitHub; }; in stdenv.mkDerivation { pname = "${sources.pname}-web"; inherit (sources) version src; dontBuild = true; # We should just copy the web templates installPhase = '' mkdir -p $out/share/ cp -vr contrib/webroot $out/share/ cp -vr contrib/templates $out/share/ ''; passthru.tests = nixosTests.hockeypuck; meta = with lib; { description = "OpenPGP Key Server web resources"; homepage = "https://github.com/hockeypuck/hockeypuck"; license = licenses.gpl3Plus; maintainers = [ maintainers.etu ]; }; }