about summary refs log tree commit diff
path: root/pkgs/development/libraries
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-07-24 22:58:18 +0000
committerGitHub <noreply@github.com>2021-07-24 22:58:18 +0000
commit92c9175760d1d879469bdf13c674db3bd2041268 (patch)
tree8b94dcfcc876a0ab2a19a7d4cc3dcd238d227abc /pkgs/development/libraries
parente12016758d9ae72d5626c86e7d56c6ba2f744ef4 (diff)
parent648aacb65dc8e4203a52b843652430b3d582dfdb (diff)
downloadnixlib-92c9175760d1d879469bdf13c674db3bd2041268.tar
nixlib-92c9175760d1d879469bdf13c674db3bd2041268.tar.gz
nixlib-92c9175760d1d879469bdf13c674db3bd2041268.tar.bz2
nixlib-92c9175760d1d879469bdf13c674db3bd2041268.tar.lz
nixlib-92c9175760d1d879469bdf13c674db3bd2041268.tar.xz
nixlib-92c9175760d1d879469bdf13c674db3bd2041268.tar.zst
nixlib-92c9175760d1d879469bdf13c674db3bd2041268.zip
Merge pull request #131398 from alyssais/librsync
btar: fix build with librsync 1.x; librsync_0_9: drop
Diffstat (limited to 'pkgs/development/libraries')
-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 74dca4e30854..000000000000
--- 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;
-  };
-}