Skip to content

Instantly share code, notes, and snippets.

@MagnificentPako
Created March 19, 2018 22:16
Show Gist options
  • Save MagnificentPako/7fb1ed87763087901909946385879edd to your computer and use it in GitHub Desktop.
Save MagnificentPako/7fb1ed87763087901909946385879edd to your computer and use it in GitHub Desktop.
with import <nixpkgs> {};
with pkgs.python36Packages;
buildPythonApplication rec {
name = "lutris-0.4.14";
src = fetchurl {
url = "http://lutris.net/releases/lutris_0.4.14.tar.xz";
sha256 = "379df37d2cca46e7678c4a3f26b5033007bc5be10f861e684cd04f45175d8039";
};
doCheck = false;
propagatedBuildInputs = [
pygobject3
evdev
libsoup
pyyaml
gnome3.gtk
];
nativeBuildInputs = [ wrapGAppsHook ];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment