2009-02-25 17:05:13 +01:00
|
|
|
{stdenv, fetchurl, python, cups}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2010-02-15 00:02:22 +01:00
|
|
|
name = "pycups-1.9.48";
|
2009-02-25 17:05:13 +01:00
|
|
|
src = fetchurl {
|
2010-02-15 00:02:22 +01:00
|
|
|
url = http://cyberelk.net/tim/data/pycups/pycups-1.9.48.tar.bz2;
|
|
|
|
sha256 = "11cz6pqp18wxrzpix55pin97mfcmdc4g13zpr739glb6c9mnj7qp";
|
2009-02-25 17:05:13 +01:00
|
|
|
};
|
|
|
|
installPhase = "python ./setup.py install --prefix $out";
|
|
|
|
buildInputs = [ python cups ];
|
|
|
|
}
|