mirror of
https://github.com/NotAShelf/nyxexprs.git
synced 2026-01-19 00:28:41 +00:00
Compare commits
No commits in common. "fd1885b7a5ba0c544b6b735fe8f55c3d460de690" and "2dbc6cd22403869e442d703462f7f72fd6b9eadb" have entirely different histories.
fd1885b7a5
...
2dbc6cd224
2 changed files with 27 additions and 27 deletions
|
|
@ -107,8 +107,8 @@
|
||||||
"nixpkgs": {
|
"nixpkgs": {
|
||||||
"type": "Channel",
|
"type": "Channel",
|
||||||
"name": "nixpkgs-unstable",
|
"name": "nixpkgs-unstable",
|
||||||
"url": "https://releases.nixos.org/nixpkgs/nixpkgs-25.11pre806481.bdc995d3e97c/nixexprs.tar.xz",
|
"url": "https://releases.nixos.org/nixpkgs/nixpkgs-25.11pre806109.3108eaa516ae/nixexprs.tar.xz",
|
||||||
"hash": "1a28r3j3jnfa3qb67ajyzadr8apj091sx3jf7s5yvw7dn1wdd37f"
|
"hash": "1bc540qw17m15pjp11324j8y8wiib8iabb8iig18a66jbp381knx"
|
||||||
},
|
},
|
||||||
"rat": {
|
"rat": {
|
||||||
"type": "GitRelease",
|
"type": "GitRelease",
|
||||||
|
|
|
||||||
|
|
@ -2,33 +2,33 @@
|
||||||
lib,
|
lib,
|
||||||
stdenvNoCC,
|
stdenvNoCC,
|
||||||
fetchzip,
|
fetchzip,
|
||||||
}:
|
pins,
|
||||||
stdenvNoCC.mkDerivation (finalAttrs: {
|
}: let
|
||||||
pname = "headscale-ui";
|
pin = pins.headscale-ui;
|
||||||
version = "2025.05.22";
|
in
|
||||||
|
stdenvNoCC.mkDerivation (finalAttrs: {
|
||||||
|
pname = "headscale-ui";
|
||||||
|
inherit (pin) version;
|
||||||
|
|
||||||
src = fetchzip {
|
src = fetchzip {
|
||||||
url = "https://github.com/gurucomputing/headscale-ui/releases/download/${finalAttrs.version}/headscale-${finalAttrs.version}.tar.gz";
|
url = "https://github.com/gurucomputing/headscale-ui/releases/download/${finalAttrs.version}/headscale-ui.zip";
|
||||||
hash = "sha256-qLX8YW5jjy4K4et7dkS0Bvug+k3NVw0m2d2Q0wLE1J4=";
|
sha256 = "sha256-Autk8D9G1Ott2ahbgJ7mGZKDChsSDgfrOhnurNiIdsQ=";
|
||||||
stripRoot = false;
|
};
|
||||||
};
|
|
||||||
|
|
||||||
dontConfigure = true;
|
installPhase = ''
|
||||||
dontBuild = true;
|
runHook preInstall
|
||||||
|
|
||||||
installPhase = ''
|
ls -lah
|
||||||
runHook preInstall
|
mkdir -p $out/share
|
||||||
|
cp -rvf ./* $out/share
|
||||||
|
|
||||||
mkdir -p $out/share/
|
runHook postInstall
|
||||||
cp -rvf ./* $out/share/
|
'';
|
||||||
|
|
||||||
runHook postInstall
|
meta = {
|
||||||
'';
|
description = "A web frontend for the headscale Tailscale-compatible coordination server";
|
||||||
|
homepage = "https://github.com/gurucomputing/headscale-ui";
|
||||||
meta = {
|
license = [lib.licenses.bsd3];
|
||||||
description = "Web frontend for the headscale Tailscale-compatible coordination server";
|
maintainers = with lib.maintainers; [NotAShelf];
|
||||||
homepage = "https://github.com/gurucomputing/headscale-ui";
|
};
|
||||||
license = [lib.licenses.bsd3];
|
})
|
||||||
maintainers = with lib.maintainers; [NotAShelf];
|
|
||||||
};
|
|
||||||
})
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue