Merge master into staging-next
This commit is contained in:
@@ -1,15 +1,15 @@
|
||||
{ stdenv, fetchurl, pythonPackages }:
|
||||
{ stdenv, fetchurl, python2Packages }:
|
||||
|
||||
pythonPackages.buildPythonApplication rec {
|
||||
python2Packages.buildPythonApplication rec {
|
||||
pname = "hy";
|
||||
version = "0.17.0";
|
||||
|
||||
src = pythonPackages.fetchPypi {
|
||||
src = python2Packages.fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1gdbqsirsdxj320wnp7my5awzs1kfs6m4fqmkzbd1zd47qzj0zfi";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with pythonPackages; [
|
||||
propagatedBuildInputs = with python2Packages; [
|
||||
appdirs
|
||||
astor
|
||||
clint
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
{ stdenv, fetchurl, pythonPackages, pkgconfig, SDL2
|
||||
{ stdenv, fetchurl, python2Packages, pkgconfig, SDL2
|
||||
, libpng, ffmpeg, freetype, glew, libGLU_combined, fribidi, zlib
|
||||
, glib
|
||||
}:
|
||||
|
||||
with pythonPackages;
|
||||
with python2Packages;
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "renpy";
|
||||
|
||||
Reference in New Issue
Block a user