tmp disabled

This commit is contained in:
Frost-Phoenix 2024-01-10 22:40:15 +01:00
parent ce9a7cff5e
commit 228da49c27

View file

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