treewide: correct version strings in dynamic packages
Some checks are pending
Checks / check (NIXPKGS_ALLOW_INSECURE=1 nix flake check --accept-flake-config --impure) (push) Waiting to run
Checks / check (nix run .#alejandra-custom -- -c . -e ./npins) (push) Waiting to run
Checks / build (push) Blocked by required conditions

This commit is contained in:
raf 2024-09-23 12:07:39 +03:00
parent 068b94fe9a
commit 8b9dce36f2
Signed by: NotAShelf
GPG key ID: AF26552424E53993
3 changed files with 4 additions and 2 deletions

View file

@ -10,7 +10,8 @@ foot.overrideAttrs (prev: let
pin = pins.foot; pin = pins.foot;
in { in {
pname = "foot-transparent"; pname = "foot-transparent";
version = "0-${date}-unstable"; version = "0-unstable-${date}";
src = fetchFromGitea { src = fetchFromGitea {
domain = "codeberg.org"; domain = "codeberg.org";
owner = "dnkl"; owner = "dnkl";

View file

@ -10,7 +10,7 @@ fuzzel.overrideAttrs (let
pin = pins.fuzzel; pin = pins.fuzzel;
in { in {
pname = "foot-transparent"; pname = "foot-transparent";
version = "0-${date}-unstable"; version = "0-unstable-${date}";
src = fetchFromGitea { src = fetchFromGitea {
domain = "codeberg.org"; domain = "codeberg.org";
owner = "dnkl"; owner = "dnkl";

View file

@ -24,5 +24,6 @@ in
description = "A web frontend for the headscale Tailscale-compatible coordination server"; description = "A web frontend for the headscale Tailscale-compatible coordination server";
homepage = "https://github.com/gurucomputing/headscale-ui"; homepage = "https://github.com/gurucomputing/headscale-ui";
license = [lib.licenses.bsd3]; license = [lib.licenses.bsd3];
maintainers = with lib.maintainers; [NotAShelf];
}; };
} }