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:
parent
43b7e69d13
commit
4398872523
|
@ -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;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue