Skip to content

Instantly share code, notes, and snippets.

@MagnificentPako
Created March 19, 2018 21:41
Show Gist options
  • Save MagnificentPako/e63cb805fcbc90b6a48231d3f28f1e77 to your computer and use it in GitHub Desktop.
Save MagnificentPako/e63cb805fcbc90b6a48231d3f28f1e77 to your computer and use it in GitHub Desktop.
with import <nixpkgs> {};
with pkgs.python35Packages;
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.pythonPackages; [
pygobject3
pygobject2
pyaml
libsoup
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment