tmp disabled
This commit is contained in:
parent
ce9a7cff5e
commit
228da49c27
|
@ -1,27 +1,27 @@
|
||||||
{ stdenv, lib, stdenv, fetchFromGitHub, ... }:
|
# { stdenv, lib, stdenv, fetchFromGitHub, ... }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
# stdenv.mkDerivation rec {
|
||||||
pname = "_2048";
|
# pname = "_2048";
|
||||||
version = "1.0";
|
# version = "1.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
# src = fetchFromGitHub {
|
||||||
owner = "Frost-Phoenix";
|
# owner = "Frost-Phoenix";
|
||||||
repo = "nixos-config";
|
# repo = "nixos-config";
|
||||||
rev = "main";
|
# rev = "main";
|
||||||
sha256 = ""; # Replace with the actual hash
|
# sha256 = ""; # Replace with the actual hash
|
||||||
};
|
# };
|
||||||
|
|
||||||
buildInputs = [
|
# buildInputs = [
|
||||||
|
|
||||||
];
|
# ];
|
||||||
|
|
||||||
buildPhase = ''
|
# # buildPhase = ''
|
||||||
make release
|
# # make release
|
||||||
'';
|
# # '';
|
||||||
|
|
||||||
installPhase = ''
|
# # installPhase = ''
|
||||||
mkdir -p $out/bin
|
# # mkdir -p $out/bin
|
||||||
make install INSTALL_DIR=$out/bin
|
# # make install INSTALL_DIR=$out/bin
|
||||||
chmod +x $out/bin/2048
|
# # chmod +x $out/bin/2048
|
||||||
'';
|
# # '';
|
||||||
}
|
# }
|
||||||
|
|
Loading…
Reference in a new issue