mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
57bccb3cb8
* treewide: http -> https sources This updates the source urls of all top-level packages from http to https where possible. * buildtorrent: fix url and tab -> spaces
38 lines
929 B
Nix
38 lines
929 B
Nix
{ stdenv, fetchurl, bzip2 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "bsdiff-${version}";
|
|
version = "4.3";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.daemonology.net/bsdiff/${name}.tar.gz";
|
|
sha256 = "0j2zm3z271x5aw63mwhr3vymzn45p2vvrlrpm9cz2nywna41b0hq";
|
|
};
|
|
|
|
buildInputs = [ bzip2 ];
|
|
patches = [ ./include-systypes.patch ];
|
|
|
|
buildPhase = ''
|
|
$CC -O3 -lbz2 bspatch.c -o bspatch
|
|
$CC -O3 -lbz2 bsdiff.c -o bsdiff
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
mkdir -p $out/share/man/man1
|
|
|
|
cp bsdiff $out/bin
|
|
cp bspatch $out/bin
|
|
cp bsdiff.1 $out/share/man/man1
|
|
cp bspatch.1 $out/share/man/man1
|
|
'';
|
|
|
|
meta = {
|
|
description = "An efficient binary diff/patch tool";
|
|
homepage = "http://www.daemonology.net/bsdiff";
|
|
license = stdenv.lib.licenses.bsd2;
|
|
platforms = stdenv.lib.platforms.unix;
|
|
maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
|
|
};
|
|
}
|