feat: got teh panel working

This commit is contained in:
silver 2024-12-09 23:08:39 +00:00
parent b13683e40c
commit de1aea7abd
Signed by: silver
GPG key ID: 36F93D61BAD3FD7D
7 changed files with 294 additions and 28 deletions

View file

@ -1,19 +0,0 @@
{ stdenv, lib, fetchurl, docker, gnutar }:
stdenv.mkDerivation rec {
pname = "pelican-wings";
version = "v1.0.0-beta6";
src = fetchurl {
url = "https://github.com/pelican-dev/wings/releases/download/${version}/wings_linux_amd64";
hash = "sha256-a2T4BjqS8Hy5YqwDEJpbvGqqsrVjdRhxvJLgk3MCXag=";
};
buildInputs = [ docker gnutar ];
phases = [ "installPhase" ];
installPhase = ''
install -D $src $out/bin/wings
'';
}