nc4nix: 0-unstable-2024-03-01 -> 0-unstable-2024-05-24

Updates mainly to include a commit that generates SRI hashes instead of
sha256 hashes for extensions.
This commit is contained in:
Pyrox 2024-07-11 23:02:05 -04:00
parent 6794d064ed
commit 4b97f227b9
No known key found for this signature in database
GPG Key ID: 8CDF3F7CAA53A0F5
2 changed files with 13 additions and 13 deletions

View File

@ -1,28 +1,28 @@
{ lib
, buildGoModule
, fetchFromGitHub
{
lib,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule {
pname = "nc4nix";
version = "0-unstable-2024-03-01";
version = "0-unstable-2024-05-24";
src = fetchFromGitHub {
owner = "helsinki-systems";
repo = "nc4nix";
rev = "ba37674c0dddf93e0a011dace92ec7f0ec834765";
hash = "sha256-k12eeP2gojLCsJH1GGuiTmxz3ViPc0+oFBuptyh42Bw=";
rev = "9d605367d0d952de9d022155e8df28e6793ff104";
hash = "sha256-QAtN4fcbsX0e6DIchOjxpHDDmIt7SGiN8riLplqXIYs=";
};
vendorHash = "sha256-ZXl4kMDY9ADkHUcLsl3uNpyErMzbgS+J65+uUeIXpSE=";
vendorHash = "sha256-qntRsv3KvAbV3lENjAHKkQOqh3uTo3gacfwase489tQ=";
meta = with lib; {
meta = {
description = "Packaging helper for Nextcloud apps";
mainProgram = "nc4nix";
homepage = "https://github.com/helsinki-systems/nc4nix";
license = licenses.mit;
maintainers = with maintainers; [ onny ];
platforms = platforms.linux;
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ onny ];
platforms = lib.platforms.linux;
};
}

View File

@ -19,7 +19,7 @@ let packages = self:
appName = pname;
appVersion = data.version;
license = appBaseDefs.${pname};
inherit (data) url sha256 description homepage;
inherit (data) url hash description homepage;
}) {};
} // lib.mapAttrs (type: pkgs: