Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.05 28 lines 498 B view raw
1# FIXME: make gdk-pixbuf dependency optional 2{ stdenv 3, buildPythonPackage 4, pythonOlder 5, fetchPypi 6, lib 7, substituteAll 8, makeFontsConf 9, freefont_ttf 10, pytest 11, pytestrunner 12, glibcLocales 13, cairo 14, cffi 15, numpy 16, withXcffib ? false, xcffib 17, python 18, glib 19, gdk-pixbuf 20}@args: 21 22import ./generic.nix ({ 23 version = "1.2.0"; 24 sha256 = "sha256-mpebUAxkyBef7ChvM36P5kTsovLNBYYM4LYtJfIuoUA="; 25 dlopen_patch = ./dlopen-paths.patch; 26 disabled = pythonOlder "3.5"; 27 inherit withXcffib; 28} // args)