nix the nix folder
Some checks failed
Gitea Actions CI / Build and deploy (push) Has been cancelled

Signed-off-by: Xe Iaso <me@xeiaso.net>
This commit is contained in:
Xe Iaso 2025-01-13 20:10:59 -05:00
parent 2352343c1a
commit 4982324231
Signed by: xe
SSH Key Fingerprint: SHA256:4VmLEcSFkJqNVktQ6/3CA2uSk8wGZ8VEzLmTQTyjngM

View File

@ -1,20 +0,0 @@
{ fetchurl, stdenv }:
stdenv.mkDerivation rec {
name = "dyson";
version = "0.1.1";
src = fetchurl {
url =
"https://xena.greedo.xeserv.us/files/${name}-linux-amd64-0.1.0.tgz";
sha256 = "08c6md2cfi5g91h23ydg5z14lkq252cdqd41x269mwk19q89nmna";
};
phases = "installPhase";
installPhase = ''
tar xf $src
mkdir -p $out/bin
cp ${name}-linux-amd64-${version}/${name} $out/bin
'';
}