test
This commit is contained in:
parent
9e991c7df3
commit
c78a829436
1 changed files with 1 additions and 1 deletions
|
@ -1,27 +0,0 @@
|
|||
{ lib, stdenv, fetchFromGitHub, ... }:
|
||||
|
||||
lib.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
|
||||
'';
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue