Merge pull request #303294 from jnsgruk/lxd-ui-0.8

lxd-ui: 0.7 -> 0.8

authored by Jon Seager and committed by GitHub 997cc156 762b3b24

+6 -3
+6 -3
pkgs/by-name/lx/lxd-ui/package.nix
··· 7 prefetch-yarn-deps, 8 yarn, 9 nixosTests, 10 }: 11 12 stdenv.mkDerivation rec { 13 pname = "lxd-ui"; 14 - version = "0.7"; 15 16 src = fetchFromGitHub { 17 owner = "canonical"; 18 repo = "lxd-ui"; 19 rev = "refs/tags/${version}"; 20 - hash = "sha256-DJLkXZpParmEYHbTpl6KFC9l9y5DqzUTrC0pb2dJXI4="; 21 }; 22 23 offlineCache = fetchYarnDeps { 24 yarnLock = "${src}/yarn.lock"; 25 - hash = "sha256-ckTWE/czzvxbGOF8fsJ3W1sal7+NaHquoSjZSPjkGj4="; 26 }; 27 28 nativeBuildInputs = [ ··· 60 ''; 61 62 passthru.tests.default = nixosTests.lxd.ui; 63 64 meta = { 65 description = "Web user interface for LXD"; 66 homepage = "https://github.com/canonical/lxd-ui"; 67 license = lib.licenses.gpl3; 68 maintainers = lib.teams.lxc.members; 69 platforms = lib.platforms.linux;
··· 7 prefetch-yarn-deps, 8 yarn, 9 nixosTests, 10 + nix-update-script, 11 }: 12 13 stdenv.mkDerivation rec { 14 pname = "lxd-ui"; 15 + version = "0.8"; 16 17 src = fetchFromGitHub { 18 owner = "canonical"; 19 repo = "lxd-ui"; 20 rev = "refs/tags/${version}"; 21 + hash = "sha256-oD/GPm84oFXHcZ8vTUzNgQinrHwNuvpeVjsrp8ibIZY="; 22 }; 23 24 offlineCache = fetchYarnDeps { 25 yarnLock = "${src}/yarn.lock"; 26 + hash = "sha256-hRZ0vbksxnUv4XMrbhP2PI94UYYzwrydJHSx+uf+MbI="; 27 }; 28 29 nativeBuildInputs = [ ··· 61 ''; 62 63 passthru.tests.default = nixosTests.lxd.ui; 64 + passthru.updateScript = nix-update-script { }; 65 66 meta = { 67 description = "Web user interface for LXD"; 68 homepage = "https://github.com/canonical/lxd-ui"; 69 + changelog = "https://github.com/canonical/lxd-ui/releases/tag/${version}"; 70 license = lib.licenses.gpl3; 71 maintainers = lib.teams.lxc.members; 72 platforms = lib.platforms.linux;