summaryrefslogtreecommitdiffstats
path: root/pkgs
diff options
context:
space:
mode:
authorOrivej Desh <orivej@gmx.fr>2019-03-13 18:01:01 +0000
committerOrivej Desh <orivej@gmx.fr>2019-03-13 18:01:01 +0000
commitbc9a42e07a5cc2341f2549b252bc6c5648938eae (patch)
tree6a2acb712ac20a358a7834b369432b1e5de7ebfc /pkgs
parent54258e459fa69a50f023a973ceb3b587cf1c3e21 (diff)
cyrus-sasl: fix broken link when building without kerberos
Since the name is part of the url, the unconventional suffix in the name breaks the url.
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/libraries/cyrus-sasl/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/libraries/cyrus-sasl/default.nix b/pkgs/development/libraries/cyrus-sasl/default.nix
index 7b130d48928e..06eac4423e78 100644
--- a/pkgs/development/libraries/cyrus-sasl/default.nix
+++ b/pkgs/development/libraries/cyrus-sasl/default.nix
@@ -4,7 +4,7 @@
with stdenv.lib;
stdenv.mkDerivation rec {
- name = "cyrus-sasl-${version}${optionalString (kerberos == null) "-without-kerberos"}";
+ name = "cyrus-sasl-${version}";
version = "2.1.27";
src = fetchurl {