nixos-config/pkgs/2048/default.nix
2024-01-03 22:33:38 +01:00

25 lines
397 B
Nix

{ lib, stdenv, fetchFromGitHub, ... }:
lib.mkDerivation rec {
pname = "2048";
version = "1.0";
src = fetchFromGitHub {
owner = "Frost-Phoenix";
repo = "nixos-config";
rev = "main";
sha256 = "..."; # Replace with the actual hash
};
buildInputs = [
];
# buildPhase = ''
# make release
# '';
installPhase = ''
make install INSTALL_DIR=$out/bin
'';
}