tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
Remove top-level pygame
See #11567.
Frederik Rietdijk
9 years ago
b6452f85
a0097867
+7
-13
2 changed files
expand all
collapse all
unified
split
pkgs
applications
office
impressive
default.nix
top-level
all-packages.nix
+6
-6
pkgs/applications/office/impressive/default.nix
···
1
-
{ fetchurl, stdenv, python, makeWrapper, lib
2
-
, xpdf, pillow, pyopengl, pygame
3
-
, setuptools, mesa, freeglut }:
4
5
-
let version = "0.10.5";
6
-
in
7
-
stdenv.mkDerivation {
0
8
# This project was formerly known as KeyJNote.
9
# See http://keyj.s2000.ws/?p=77 for details.
10
···
1
+
{ fetchurl, stdenv, pythonPackages, makeWrapper, lib
2
+
, xpdf, mesa, freeglut }:
0
3
4
+
let
5
+
inherit (pythonPackages) python pyopengl pygame setuptools pillow;
6
+
version = "0.10.5";
7
+
in stdenv.mkDerivation {
8
# This project was formerly known as KeyJNote.
9
# See http://keyj.s2000.ws/?p=77 for details.
10
+1
-7
pkgs/top-level/all-packages.nix
···
10065
10066
pyexiv2 = pythonPackages.pyexiv2;
10067
10068
-
pygame = pythonPackages.pygame;
10069
-
10070
pygobject = pythonPackages.pygobject;
10071
10072
pygobject3 = pythonPackages.pygobject3;
···
13556
imagemagickBig = callPackage ../applications/graphics/ImageMagick { };
13557
13558
# Impressive, formerly known as "KeyJNote".
13559
-
impressive = callPackage ../applications/office/impressive {
13560
-
# XXX These are the PyOpenGL dependencies, which we need here.
13561
-
inherit (pythonPackages) pyopengl;
13562
-
inherit (pythonPackages) pillow;
13563
-
};
13564
13565
inferno = callPackage_i686 ../applications/inferno { };
13566
···
10065
10066
pyexiv2 = pythonPackages.pyexiv2;
10067
0
0
10068
pygobject = pythonPackages.pygobject;
10069
10070
pygobject3 = pythonPackages.pygobject3;
···
13554
imagemagickBig = callPackage ../applications/graphics/ImageMagick { };
13555
13556
# Impressive, formerly known as "KeyJNote".
13557
+
impressive = callPackage ../applications/office/impressive { };
0
0
0
0
13558
13559
inferno = callPackage_i686 ../applications/inferno { };
13560