Compare commits

...
Sign in to create a new pull request.

1 commit

Author SHA1 Message Date
38c467cbbe WIP proton 2019-02-03 13:35:57 +01:00
2 changed files with 39 additions and 0 deletions

View file

@ -5,6 +5,7 @@
micropython = pkgs.callPackage ./micropython/default.nix {};
wildfly = pkgs.callPackage ./wildfly/default.nix {};
postman_appimage = pkgs.callPackage ./postman-appimage/default.nix {};
proton = pkgs.callPackage ./proton/default.nix {};
services = import ./services/default.nix;
}

38
proton/default.nix Normal file
View file

@ -0,0 +1,38 @@
{ 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 = ''
'';
}