summary refs log tree commit diff
path: root/pkgs/development/libraries/enchant
diff options
context:
space:
mode:
authorMarkus Kowalewski <markus.kowalewski@gmail.com>2018-10-08 22:37:05 +0200
committerMarkus Kowalewski <markus.kowalewski@gmail.com>2018-10-08 22:37:05 +0200
commitcd2145b33229d6d4f0ad77759083699570e67f51 (patch)
treebd7665bddfe3bb10fbed3ff77ac5706421a1ed26 /pkgs/development/libraries/enchant
parent788c070012918172e7a69fb3d7ef47a29ac41709 (diff)
downloadnixpkgs-cd2145b33229d6d4f0ad77759083699570e67f51.tar
nixpkgs-cd2145b33229d6d4f0ad77759083699570e67f51.tar.gz
nixpkgs-cd2145b33229d6d4f0ad77759083699570e67f51.tar.bz2
nixpkgs-cd2145b33229d6d4f0ad77759083699570e67f51.tar.lz
nixpkgs-cd2145b33229d6d4f0ad77759083699570e67f51.tar.xz
nixpkgs-cd2145b33229d6d4f0ad77759083699570e67f51.tar.zst
nixpkgs-cd2145b33229d6d4f0ad77759083699570e67f51.zip
enchant: add license
Diffstat (limited to 'pkgs/development/libraries/enchant')
-rw-r--r--pkgs/development/libraries/enchant/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/development/libraries/enchant/default.nix b/pkgs/development/libraries/enchant/default.nix
index c51475ecc2a..a9446306d33 100644
--- a/pkgs/development/libraries/enchant/default.nix
+++ b/pkgs/development/libraries/enchant/default.nix
@@ -13,9 +13,10 @@ stdenv.mkDerivation rec {
   nativeBuildInputs = [ pkgconfig ];
   buildInputs = [ aspell glib hunspell hspell ];
 
-  meta = {
+  meta = with stdenv.lib; {
     description = "Generic spell checking library";
     homepage = http://www.abisource.com/enchant;
-    platforms = stdenv.lib.platforms.unix;
+    platforms = platforms.unix;
+    license = licenses.lgpl21;
   };
 }