eintopf: 0.13.16 -> 0.14.1 (#336806)

This commit is contained in:
Yt 2024-09-06 00:48:07 +00:00 committed by GitHub
commit 6aeb223337
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 7 deletions

View File

@ -16,7 +16,7 @@ stdenv.mkDerivation (finalAttrs: {
offlineCache = fetchYarnDeps { offlineCache = fetchYarnDeps {
yarnLock = "${finalAttrs.src}/backstage/yarn.lock"; yarnLock = "${finalAttrs.src}/backstage/yarn.lock";
hash = "sha256-Z/Pkk/qCWwr99g11DjEgnisPfxOhfD8+OCn6otxJtfI="; hash = "sha256-7Br2FBhLZf7Cuul5n55EHfqyW8GbujB+yZ/RK6f7I4M=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [

View File

@ -6,13 +6,13 @@
}: }:
let let
version = "0.13.16"; version = "0.14.1";
src = fetchFromGitea { src = fetchFromGitea {
domain = "codeberg.org"; domain = "codeberg.org";
owner = "Klasse-Methode"; owner = "Klasse-Methode";
repo = "eintopf"; repo = "eintopf";
rev = "v${version}"; rev = "v${version}";
hash = "sha256-ex5bpO60ousJcgZGdviqWrCyihycW+JT+EYFvdooUDw="; hash = "sha256-+QEAUyAqFLcc3bhGI3v4FxhDt+3P6vBnxWsFPp56lfg=";
}; };
frontend = callPackage ./frontend.nix { inherit src version; }; frontend = callPackage ./frontend.nix { inherit src version; };
in in
@ -21,7 +21,7 @@ buildGoModule rec {
pname = "eintopf"; pname = "eintopf";
inherit version src; inherit version src;
vendorHash = "sha256-dBxI6cUGc16lg89x8b+hSLcv5y/MLf6vDIvqdMBUz3I="; vendorHash = "sha256-ODVCZWxkPWW8ZlONiVXwVQalsLIUl9x512JimLAUm6U=";
ldflags = [ ldflags = [
"-s" "-s"
@ -47,9 +47,7 @@ buildGoModule rec {
meta = with lib; { meta = with lib; {
description = "A calendar for Stuttgart, showing events, groups and places"; description = "A calendar for Stuttgart, showing events, groups and places";
homepage = "https://codeberg.org/Klasse-Methode/eintopf"; homepage = "https://codeberg.org/Klasse-Methode/eintopf";
# License is going to change back to AGPL in the next release license = licenses.agpl3Only;
# https://codeberg.org/Klasse-Methode/eintopf/issues/351#issuecomment-2076870
license = licenses.gpl3Plus;
maintainers = with maintainers; [ onny ]; maintainers = with maintainers; [ onny ];
platforms = platforms.unix; platforms = platforms.unix;
}; };