libnfs: fix broken meta.license attribute

A license called "bsd" does not exist. Ping @peterhoeg.

(cherry picked from commit 4398872523)
This commit is contained in:
Peter Simons
2017-09-27 16:17:15 +02:00
committed by Robin Gloster
parent 9fc37e24dd
commit 930759d024

View File

@@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "NFS client library";
homepage = https://github.com/sahlberg/libnfs;
license = with licenses; [ lgpl2 bsd gpl3];
license = with licenses; [ lgpl2 gpl3];
maintainers = with maintainers; [ peterhoeg ];
platforms = platforms.unix;
};