about summary refs log tree commit diff
path: root/pkgs/development/libraries/librsync
diff options
context:
space:
mode:
authorAlyssa Ross <hi@alyssa.is>2021-07-24 22:23:38 +0000
committerAlyssa Ross <hi@alyssa.is>2021-07-24 22:27:14 +0000
commit648aacb65dc8e4203a52b843652430b3d582dfdb (patch)
tree9d0350978093a9183061f2646959822edaf870a5 /pkgs/development/libraries/librsync
parent7368fa12c4c6b05027b367293b92b6a8f310d08e (diff)
librsync_0_9: drop
This was restored in a0dcd49bbc7 ("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.
Diffstat (limited to 'pkgs/development/libraries/librsync')
-rw-r--r--pkgs/development/libraries/librsync/0.9.nix26
1 files changed, 0 insertions, 26 deletions
diff --git a/pkgs/development/libraries/librsync/0.9.nix b/pkgs/development/libraries/librsync/0.9.nix
deleted file mode 100644
index 74dca4e308545..0000000000000
--- a/pkgs/development/libraries/librsync/0.9.nix
+++ /dev/null
@@ -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;
-  };
-}