summary refs log tree commit diff
path: root/pkgs/applications/version-management
diff options
context:
space:
mode:
authorBobby Rong <rjl931189261@126.com>2022-04-24 10:40:05 +0800
committerGitHub <noreply@github.com>2022-04-24 10:40:05 +0800
commite076216c3e042a3cfa980e3e510369822f3cdf4b (patch)
treed205a30e5f632c5c4c1bd1e277c35616365b87c7 /pkgs/applications/version-management
parente1844e4c5ff4bcd955643bb2a316666ffd0a7dca (diff)
parentcd8f1c2f111880de24e577599edbcb139eec3571 (diff)
downloadnixpkgs-e076216c3e042a3cfa980e3e510369822f3cdf4b.tar
nixpkgs-e076216c3e042a3cfa980e3e510369822f3cdf4b.tar.gz
nixpkgs-e076216c3e042a3cfa980e3e510369822f3cdf4b.tar.bz2
nixpkgs-e076216c3e042a3cfa980e3e510369822f3cdf4b.tar.lz
nixpkgs-e076216c3e042a3cfa980e3e510369822f3cdf4b.tar.xz
nixpkgs-e076216c3e042a3cfa980e3e510369822f3cdf4b.tar.zst
nixpkgs-e076216c3e042a3cfa980e3e510369822f3cdf4b.zip
Merge pull request #169299 from clkamp/fix-rcs
rcs: Fix build failure
Diffstat (limited to 'pkgs/applications/version-management')
-rw-r--r--pkgs/applications/version-management/rcs/default.nix10
1 files changed, 1 insertions, 9 deletions
diff --git a/pkgs/applications/version-management/rcs/default.nix b/pkgs/applications/version-management/rcs/default.nix
index 6982bd43b26..5f2f9aab2b3 100644
--- a/pkgs/applications/version-management/rcs/default.nix
+++ b/pkgs/applications/version-management/rcs/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, fetchurl, fetchpatch, buildPackages, diffutils, ed, lzip }:
+{ lib, stdenv, fetchurl, buildPackages, diffutils, ed, lzip }:
 
 stdenv.mkDerivation rec {
   pname = "rcs";
@@ -9,14 +9,6 @@ stdenv.mkDerivation rec {
     sha256 = "sha256-Q93+EHJKi4XiRo9kA7YABzcYbwHmDgvWL95p2EIjTMU=";
   };
 
-  patches = [
-    # glibc 2.34 compat
-    (fetchpatch {
-      url = "https://src.fedoraproject.org/rpms/rcs/raw/f8e07cd37f4abfb36e37d41852bb8f9e234d3fb1/f/rcs-5.10.0-SIGSTKSZ.patch";
-      sha256 = "sha256-mc6Uye9mdEsLBcOnf1m1TUb1BV0ncNU//iKBpLGBjho=";
-    })
-  ];
-
   ac_cv_path_ED = "${ed}/bin/ed";
   DIFF = "${diffutils}/bin/diff";
   DIFF3 = "${diffutils}/bin/diff3";