mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
picard: use python2
This commit is contained in:
parent
36b4dc54bb
commit
1427265c88
1 changed files with 2 additions and 1 deletions
|
@ -1,9 +1,10 @@
|
||||||
{ stdenv, pythonPackages, fetchurl, gettext
|
{ stdenv, python2Packages, fetchurl, gettext
|
||||||
, pkgconfig, libofa, ffmpeg, chromaprint
|
, pkgconfig, libofa, ffmpeg, chromaprint
|
||||||
}:
|
}:
|
||||||
|
|
||||||
let
|
let
|
||||||
version = "1.3.2";
|
version = "1.3.2";
|
||||||
|
pythonPackages = python2Packages;
|
||||||
in pythonPackages.buildPythonApplication {
|
in pythonPackages.buildPythonApplication {
|
||||||
name = "picard-${version}";
|
name = "picard-${version}";
|
||||||
namePrefix = "";
|
namePrefix = "";
|
||||||
|
|
Loading…
Reference in a new issue