Compare commits
No commits in common. "proton" and "master" have entirely different histories.
2 changed files with 0 additions and 39 deletions
|
|
@ -5,7 +5,6 @@
|
||||||
micropython = pkgs.callPackage ./micropython/default.nix {};
|
micropython = pkgs.callPackage ./micropython/default.nix {};
|
||||||
wildfly = pkgs.callPackage ./wildfly/default.nix {};
|
wildfly = pkgs.callPackage ./wildfly/default.nix {};
|
||||||
postman_appimage = pkgs.callPackage ./postman-appimage/default.nix {};
|
postman_appimage = pkgs.callPackage ./postman-appimage/default.nix {};
|
||||||
proton = pkgs.callPackage ./proton/default.nix {};
|
|
||||||
|
|
||||||
services = import ./services/default.nix;
|
services = import ./services/default.nix;
|
||||||
}
|
}
|
||||||
|
|
@ -1,38 +0,0 @@
|
||||||
{ pkgs ? import <nixpkgs> {} }:
|
|
||||||
|
|
||||||
let
|
|
||||||
|
|
||||||
in
|
|
||||||
|
|
||||||
pkgs.stdenv.mkDerivation rec {
|
|
||||||
name = "proton-${version}";
|
|
||||||
version = "3.16-6";
|
|
||||||
|
|
||||||
src = pkgs.fetchFromGitHub {
|
|
||||||
owner = "ValveSoftware";
|
|
||||||
repo = "Proton";
|
|
||||||
rev = "proton-${version}";
|
|
||||||
sha256 = "0ym688xdvz2dsv2zpwzlsgwgwngm9hf6ywwyrg10733cabyar0b0";
|
|
||||||
fetchSubmodules = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
nativeBuildInputs = with pkgs; [
|
|
||||||
];
|
|
||||||
|
|
||||||
buildInputs = with pkgs; [
|
|
||||||
];
|
|
||||||
|
|
||||||
patches = [];
|
|
||||||
|
|
||||||
configureScript = "bash ./configure.sh";
|
|
||||||
configureFlags = "--no-steam-runtime";
|
|
||||||
dontAddPrefix = true;
|
|
||||||
|
|
||||||
buildPhase = ''
|
|
||||||
cat Makefile
|
|
||||||
make dist
|
|
||||||
'';
|
|
||||||
|
|
||||||
installPhase = ''
|
|
||||||
'';
|
|
||||||
}
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue