Skip to content

Instantly share code, notes, and snippets.

@MagnificentPako
Created March 19, 2018 22:00
Show Gist options
  • Save MagnificentPako/d6d900757aac4f439eff893bd2c677fc to your computer and use it in GitHub Desktop.
Save MagnificentPako/d6d900757aac4f439eff893bd2c677fc 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";
};
propagatedBuildInputs = with pkgs.python36Packages; [
pygobject3
evdev
libsoup
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment