1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-18 11:40:45 +00:00

libnfs: fix broken meta.license attribute

A license called "bsd" does not exist. Ping @peterhoeg.
This commit is contained in:
Peter Simons 2017-09-27 16:17:15 +02:00
parent 43b7e69d13
commit 4398872523

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;
};