From 52f0aa3f824847fdc3a07cdb811d66517bcd27b9 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Sun, 10 Apr 2016 19:48:01 +0200 Subject: [PATCH] pure-ftpd: fix meta.license There is no licenses.bsd. Consulting the source reveals that it uses the language of the ISC license (which is supposed to be equivalent to the simplified BSD license). --- pkgs/servers/ftp/pure-ftpd/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/servers/ftp/pure-ftpd/default.nix b/pkgs/servers/ftp/pure-ftpd/default.nix index fe557b5080d..0cbf920cb72 100644 --- a/pkgs/servers/ftp/pure-ftpd/default.nix +++ b/pkgs/servers/ftp/pure-ftpd/default.nix @@ -11,7 +11,7 @@ stdenv.mkDerivation rec { meta = with stdenv.lib; { description = "A free, secure, production-quality and standard-conformant FTP server"; homepage = https://www.pureftpd.org; - license = licenses.bsd; + license = licenses.isc; # with some parts covered by BSD3(?) maintainers = [ maintainers.lethalman ]; };