mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
46420bbaa3
treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
67 lines
2.4 KiB
Nix
67 lines
2.4 KiB
Nix
{stdenv, fetchurl, unzip, xz, dpkg
|
|
, libxslt, docbook_xsl, makeWrapper
|
|
, python3Packages
|
|
, perlPackages, curl, gnupg, diffutils
|
|
, sendmailPath ? "/run/wrappers/bin/sendmail"
|
|
}:
|
|
|
|
let
|
|
inherit (python3Packages) python setuptools;
|
|
in stdenv.mkDerivation rec {
|
|
version = "2.16.8";
|
|
pname = "debian-devscripts";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://debian/pool/main/d/devscripts/devscripts_${version}.tar.xz";
|
|
sha256 = "0xy1nvqrnifx46g8ch69pk31by0va6hn10wpi1fkrsrgncanjjh1";
|
|
};
|
|
|
|
buildInputs = [ unzip xz dpkg libxslt python setuptools makeWrapper curl gnupg diffutils ] ++
|
|
(with perlPackages; [ perl CryptSSLeay LWP TimeDate DBFile FileDesktopEntry ParseDebControl LWPProtocolHttps ]);
|
|
|
|
preConfigure = ''
|
|
export PERL5LIB="$PERL5LIB''${PERL5LIB:+:}${dpkg}";
|
|
tgtpy="$out/lib/${python.libPrefix}/site-packages"
|
|
mkdir -p "$tgtpy"
|
|
export PYTHONPATH="$PYTHONPATH''${PYTHONPATH:+:}$tgtpy"
|
|
find po4a scripts -type f -exec sed -r \
|
|
-e "s@/usr/bin/gpg(2|)@${gnupg}/bin/gpg@g" \
|
|
-e "s@/usr/(s|)bin/sendmail@${sendmailPath}@g" \
|
|
-e "s@/usr/bin/diff@${diffutils}/bin/diff@g" \
|
|
-e "s@/usr/bin/gpgv(2|)@${gnupg}/bin/gpgv@g" \
|
|
-e "s@(command -v|/usr/bin/)curl@${curl.bin}/bin/curl@g" \
|
|
-i {} +
|
|
sed -e "s@/usr/share/sgml/[^ ]*/manpages/docbook.xsl@${docbook_xsl}/xml/xsl/docbook/manpages/docbook.xsl@" -i scripts/Makefile
|
|
sed -r \
|
|
-e "s@/usr( |$|/)@$out\\1@g" \
|
|
-e "s@/etc( |$|/)@$out/etc\\1@g" \
|
|
-e 's/ translated_manpages//; s/--install-layout=deb//; s@--root="[^ ]*"@--prefix="'"$out"'"@' \
|
|
-i Makefile* */Makefile*
|
|
'';
|
|
|
|
makeFlags = [
|
|
"DESTDIR=$(out)"
|
|
"PREFIX="
|
|
"COMPL_DIR=/share/bash-completion/completions"
|
|
"PERLMOD_DIR=/share/devscripts"
|
|
];
|
|
|
|
postInstall = ''
|
|
sed -re 's@(^|[ !`"])/bin/bash@\1${stdenv.shell}@g' -i "$out/bin"/*
|
|
for i in "$out/bin"/*; do
|
|
wrapProgram "$i" \
|
|
--prefix PERL5LIB : "$PERL5LIB" \
|
|
--prefix PERL5LIB : "$out/share/devscripts" \
|
|
--prefix PYTHONPATH : "$out/lib/python3.4/site-packages" \
|
|
--prefix PATH : "${dpkg}/bin"
|
|
done
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = ''Debian package maintenance scripts'';
|
|
license = licenses.free; # Mix of public domain, Artistic+GPL, GPL1+, GPL2+, GPL3+, and GPL2-only... TODO
|
|
maintainers = with maintainers; [raskin];
|
|
platforms = with platforms; linux;
|
|
};
|
|
}
|