nixos-config/pkgs/_2048/default.nix

28 lines
507 B
Nix
Raw Normal View History

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