From 228da49c27f010aa56bcb4cfb00c134ead7bf449 Mon Sep 17 00:00:00 2001 From: Frost-Phoenix <67cyril6767@gmail.com> Date: Wed, 10 Jan 2024 22:40:15 +0100 Subject: [PATCH] tmp disabled --- pkgs/_2048/default.nix | 42 +++++++++++++++++++++--------------------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/pkgs/_2048/default.nix b/pkgs/_2048/default.nix index 6a8105d..25ec4ed 100644 --- a/pkgs/_2048/default.nix +++ b/pkgs/_2048/default.nix @@ -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 +# # ''; +# }