28 lines
507 B
Nix
28 lines
507 B
Nix
# { stdenv, lib, stdenv, fetchFromGitHub, ... }:
|
|
|
|
# stdenv.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 = ''
|
|
# # mkdir -p $out/bin
|
|
# # make install INSTALL_DIR=$out/bin
|
|
# # chmod +x $out/bin/2048
|
|
# # '';
|
|
# }
|