about summary refs log tree commit diff
path: root/pkgs/data/misc/freepats/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/data/misc/freepats/default.nix')
-rw-r--r--pkgs/data/misc/freepats/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/data/misc/freepats/default.nix b/pkgs/data/misc/freepats/default.nix
index 356041bf761f2..a2f77c936f159 100644
--- a/pkgs/data/misc/freepats/default.nix
+++ b/pkgs/data/misc/freepats/default.nix
@@ -10,13 +10,15 @@ stdenv.mkDerivation rec {
 
   installPhase = ''mkdir "$out"; cp -r . "$out"'';
 
-  meta = {
+  meta = with stdenv.lib; {
     description = "Instrument patches, for MIDI synthesizers";
     longDescription = ''
       Freepats is a project to create a free and open set of instrument
       patches, in any format, that can be used with softsynths.
     '';
     homepage = http://freepats.zenvoid.org/;
-    license = stdenv.lib.licenses.gpl2;
+    license = licenses.gpl2;
+    platforms = platforms.all;
+    maintainers = maintainers.bjornfor;
   };
 }