librsync_0_9: drop
This was restored in a0dcd49bbc
("btar: fix build by reintroducing
librsync 0.9.x for ZHF") to fix the build of a single package. We now
use a patch to make it work with more recent versions of librsync, so
there's no reason to keep this package around any more.
This commit is contained in:
parent
7368fa12c4
commit
648aacb65d
3 changed files with 1 additions and 28 deletions
|
@ -1,26 +0,0 @@
|
|||
{ lib, stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "librsync-0.9.7";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/librsync/librsync-0.9.7.tar.gz";
|
||||
sha256 = "1mj1pj99mgf1a59q9f2mxjli2fzxpnf55233pc1klxk2arhf8cv6";
|
||||
};
|
||||
|
||||
hardeningDisable = [ "format" ];
|
||||
|
||||
configureFlags = [
|
||||
(lib.enableFeature stdenv.isCygwin "static")
|
||||
(lib.enableFeature (!stdenv.isCygwin) "shared")
|
||||
];
|
||||
|
||||
dontStrip = stdenv.hostPlatform != stdenv.buildPlatform;
|
||||
|
||||
meta = {
|
||||
homepage = "http://librsync.sourceforge.net/";
|
||||
license = lib.licenses.lgpl2Plus;
|
||||
description = "Implementation of the rsync remote-delta algorithm";
|
||||
platforms = lib.platforms.unix;
|
||||
};
|
||||
}
|
|
@ -423,6 +423,7 @@ mapAliases ({
|
|||
libqrencode = qrencode; # added 2019-01-01
|
||||
librdf = lrdf; # added 2020-03-22
|
||||
librecad2 = librecad; # backwards compatibility alias, added 2015-10
|
||||
librsync_0_9 = throw "librsync_0_9 has been removed"; # added 2021-07-24
|
||||
libseat = seatd; # added 2021-06-24
|
||||
libsysfs = sysfsutils; # added 2018-04-25
|
||||
libtidy = html-tidy; # added 2014-12-21
|
||||
|
|
|
@ -17043,8 +17043,6 @@ in
|
|||
|
||||
librsync = callPackage ../development/libraries/librsync { };
|
||||
|
||||
librsync_0_9 = callPackage ../development/libraries/librsync/0.9.nix { };
|
||||
|
||||
librttopo = callPackage ../development/libraries/librttopo { };
|
||||
|
||||
libs3 = callPackage ../development/libraries/libs3 { };
|
||||
|
|
Loading…
Reference in a new issue