From 9122b454f629558cdc97602a906bce3c97fc3ba3 Mon Sep 17 00:00:00 2001 From: Jonathan Ringer Date: Sun, 1 Nov 2020 10:31:36 -0800 Subject: [PATCH] csv_fast_export: use python3 --- .../version-management/cvs-fast-export/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/version-management/cvs-fast-export/default.nix b/pkgs/applications/version-management/cvs-fast-export/default.nix index 0592f6e545d..cbd630094f0 100644 --- a/pkgs/applications/version-management/cvs-fast-export/default.nix +++ b/pkgs/applications/version-management/cvs-fast-export/default.nix @@ -1,7 +1,7 @@ {stdenv, fetchurl, makeWrapper, flex, bison, asciidoc, docbook_xml_dtd_45, docbook_xsl, libxml2, libxslt, - python27, rcs, cvs, git, + python3, rcs, cvs, git, coreutils, rsync}: with stdenv; with lib; mkDerivation rec { @@ -22,7 +22,7 @@ mkDerivation rec { buildInputs = [ flex bison asciidoc docbook_xml_dtd_45 docbook_xsl libxml2 libxslt - python27 rcs cvs git makeWrapper + python3 rcs cvs git makeWrapper ]; postPatch = "patchShebangs .";