commit
c52e835807
|
@ -0,0 +1,39 @@
|
||||||
|
{ stdenv, pkgs, lib, fetchurl, makeWrapper, perl, unrar, unzip, gzip, file, extraBackends ? [] }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "unp-${version}";
|
||||||
|
version = "2.0-pre7";
|
||||||
|
|
||||||
|
runtime_bins = [ file unrar unzip gzip ] ++ extraBackends;
|
||||||
|
buildInputs = [ perl makeWrapper ] ++ runtime_bins;
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
# url = "http://http.debian.net/debian/pool/main/u/unp/unp_2.0~pre7+nmu1.tar.bz2";
|
||||||
|
url = "mirror://debian/pool/main/u/unp/unp_2.0~pre7+nmu1.tar.bz2";
|
||||||
|
sha256 = "09w2sy7ivmylxf8blf0ywxicvb4pbl0xhrlbb3i9x9d56ll6ybbw";
|
||||||
|
name = "unp_2.0_pre7+nmu1.tar.bz2";
|
||||||
|
};
|
||||||
|
|
||||||
|
configurePhase = "true";
|
||||||
|
buildPhase = "true";
|
||||||
|
installPhase = ''
|
||||||
|
mkdir -p $out/bin
|
||||||
|
mkdir -p $out/share/man
|
||||||
|
cp unp $out/bin/
|
||||||
|
cp ucat $out/bin/
|
||||||
|
cp debian/unp.1 $out/share/man
|
||||||
|
|
||||||
|
wrapProgram $out/bin/unp \
|
||||||
|
--prefix PATH : ${lib.makeBinPath runtime_bins}
|
||||||
|
wrapProgram $out/bin/ucat \
|
||||||
|
--prefix PATH : ${lib.makeBinPath runtime_bins}
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Command line tool for unpacking archives easily";
|
||||||
|
homepage = https://packages.qa.debian.org/u/unp.html;
|
||||||
|
license = with licenses; [ gpl2 ];
|
||||||
|
maintainers = [ maintainers.timor ];
|
||||||
|
platforms = platforms.all;
|
||||||
|
};
|
||||||
|
}
|
|
@ -5449,6 +5449,8 @@ with pkgs;
|
||||||
|
|
||||||
unarj = callPackage ../tools/archivers/unarj { };
|
unarj = callPackage ../tools/archivers/unarj { };
|
||||||
|
|
||||||
|
unp = callPackage ../tools/archivers/unp { };
|
||||||
|
|
||||||
unshield = callPackage ../tools/archivers/unshield { };
|
unshield = callPackage ../tools/archivers/unshield { };
|
||||||
|
|
||||||
unzip = callPackage ../tools/archivers/unzip { };
|
unzip = callPackage ../tools/archivers/unzip { };
|
||||||
|
|
Loading…
Reference in New Issue