mirror of
https://github.com/traxys/Nixfiles.git
synced 2026-04-03 02:47:28 +02:00
pkgs: Stop using nvfetcher for proton-ge
This commit is contained in:
parent
aa9aad0d33
commit
fc208047ef
2 changed files with 11 additions and 5 deletions
|
|
@ -5,7 +5,7 @@
|
|||
}: rec {
|
||||
wowup = callPackage ./wowup.nix {};
|
||||
simulationcraft = callPackage ./simulationcraft.nix {simulationcraft-src = sources.simulationcraft;};
|
||||
proton-ge = callPackage ./proton-ge.nix {proton-ge-src = sources.proton-ge;};
|
||||
proton-ge = callPackage ./proton-ge.nix {};
|
||||
hbw = callPackage ./hbw {};
|
||||
kabalist_cli = callPackage ./kabalist.nix {
|
||||
inherit naersk;
|
||||
|
|
|
|||
|
|
@ -1,11 +1,17 @@
|
|||
{
|
||||
stdenv,
|
||||
proton-ge-src,
|
||||
fetchFromGitHub,
|
||||
}:
|
||||
stdenv.mkDerivation {
|
||||
inherit (proton-ge-src) pname src version;
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "proton-ge";
|
||||
version = "8-3";
|
||||
|
||||
nativeBuildInputs = [];
|
||||
src = fetchFromGitHub {
|
||||
owner = "GloriousEggroll";
|
||||
repo = "proton-ge-custom";
|
||||
rev = "refs/tags/GE-Proton${version}";
|
||||
hash = "sha256-ma+f+UrKrXluPAvv7v5x/X22eZJsS4sen2x5EVtRZ5M=";
|
||||
};
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue