Reinitialized repo after massive overhaul

This commit is contained in:
2024-10-02 14:24:37 -05:00
parent 319e79bcd2
commit a501308ce9
45 changed files with 156 additions and 290 deletions

45
home/packages/external/flake.nix vendored Normal file
View File

@@ -0,0 +1,45 @@
{
description = "Nathan user External Flakes";
inputs = {
digital = {
url = "https://github.com/hneemann/Digital/releases/latest/download/Digital.zip";
flake = false;
};
nixpkgs.url = "github:nixos/nixpkgs/nixos-24.05";
};
outputs = { self, ... }@inputs: let
system = "x86_64-linux";
_pkgs = import inputs.nixpkgs { inherit system; };
in rec {
packages.${system}.digital = _pkgs.stdenv.mkDerivation {
name = "digital";
src = inputs.digital;
buildPhase = ''
'';
installPhase = ''
mkdir -p $out/bin
echo "${_pkgs.zulu}/bin/java -jar $src/Digital.jar" > $out/bin/$name
chmod +x $out/bin/digital
'';
};
hmModule = { config, lib, pkgs, ... }: {
home.packages = [
packages.${pkgs.system}.digital
];
};
};
}