Brendan Golden
ea0e5ff7f5
All checks were successful
Build_Deploy / linter (push) Successful in 6s
Build_Deploy / build (push) Successful in 16s
Build_Deploy / deploy_dns (push) Successful in 54s
Build_Deploy / deploy_active (active) (push) Successful in 1m12s
Build_Deploy / deploy_active (active-core) (push) Successful in 1m11s
Build_Deploy / deploy_active (active-ext) (push) Successful in 30s
24 lines
451 B
Nix
24 lines
451 B
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchurl,
|
|
docker,
|
|
gnutar,
|
|
}:
|
|
stdenv.mkDerivation rec {
|
|
pname = "pelican-wings";
|
|
version = "v1.0.0-beta9";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/pelican-dev/wings/releases/download/${version}/wings_linux_amd64";
|
|
hash = "sha256-YaS1bthNSeWXH5drc2yensRqsRAOa2VXvivJOaPybqc=";
|
|
};
|
|
|
|
buildInputs = [docker gnutar];
|
|
|
|
phases = ["installPhase"];
|
|
|
|
installPhase = ''
|
|
install -D $src $out/bin/wings
|
|
'';
|
|
}
|