mirror of
https://github.com/traxys/Nixfiles.git
synced 2026-03-05 12:11:07 +01:00
20 lines
367 B
Nix
20 lines
367 B
Nix
{
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
}:
|
|
stdenv.mkDerivation rec {
|
|
pname = "proton-ge";
|
|
version = "9-4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "GloriousEggroll";
|
|
repo = "proton-ge-custom";
|
|
rev = "refs/tags/GE-Proton${version}";
|
|
hash = "sha256-tg+ElIoPhchedHwofRArZ0ds9xF1LSrIFTBxoFm4btg=";
|
|
};
|
|
|
|
installPhase = ''
|
|
mkdir -p $out
|
|
mv * $out/
|
|
'';
|
|
}
|