summary refs log tree commit diff
path: root/pkgs/development/libraries/liblastfm
diff options
context:
space:
mode:
authorMarkus Kowalewski <markus.kowalewski@gmail.com>2018-10-18 20:51:13 +0200
committerMarkus Kowalewski <markus.kowalewski@gmail.com>2018-10-18 22:36:17 +0200
commit014c5c4b67f27350012ebbf6840a813f47cde830 (patch)
tree6f99268398b291f229afde58bef1a5969dc4d675 /pkgs/development/libraries/liblastfm
parent53194bf4f2a2f195320869eae1b1364847e2db4e (diff)
downloadnixpkgs-014c5c4b67f27350012ebbf6840a813f47cde830.tar
nixpkgs-014c5c4b67f27350012ebbf6840a813f47cde830.tar.gz
nixpkgs-014c5c4b67f27350012ebbf6840a813f47cde830.tar.bz2
nixpkgs-014c5c4b67f27350012ebbf6840a813f47cde830.tar.lz
nixpkgs-014c5c4b67f27350012ebbf6840a813f47cde830.tar.xz
nixpkgs-014c5c4b67f27350012ebbf6840a813f47cde830.tar.zst
nixpkgs-014c5c4b67f27350012ebbf6840a813f47cde830.zip
liblastfm: add license
Diffstat (limited to 'pkgs/development/libraries/liblastfm')
-rw-r--r--pkgs/development/libraries/liblastfm/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/development/libraries/liblastfm/default.nix b/pkgs/development/libraries/liblastfm/default.nix
index 331422dd892..b7d90100837 100644
--- a/pkgs/development/libraries/liblastfm/default.nix
+++ b/pkgs/development/libraries/liblastfm/default.nix
@@ -18,11 +18,12 @@ stdenv.mkDerivation rec {
   nativeBuildInputs = [ pkgconfig which cmake ];
   buildInputs = stdenv.lib.optional stdenv.isDarwin darwin.apple_sdk.frameworks.SystemConfiguration;
 
-  meta = {
+  meta = with stdenv.lib; {
     homepage = https://github.com/lastfm/liblastfm;
     repositories.git = git://github.com/lastfm/liblastfm.git;
     description = "Official LastFM library";
     inherit (qt4.meta) platforms;
-    maintainers = with stdenv.lib.maintainers; [ phreedom ];
+    maintainers =  [ maintainers.phreedom ];
+    license = licenses.gpl3;
   };
 }