summary refs log tree commit diff
path: root/pkgs/development/libraries/qwt
diff options
context:
space:
mode:
authorBjørn Forsman <bjorn.forsman@gmail.com>2013-09-15 15:12:44 +0200
committerBjørn Forsman <bjorn.forsman@gmail.com>2013-09-25 21:34:51 +0200
commitd1796df7c9ffef18a052f6502c4b74de6dc299a1 (patch)
tree67ab5bdaf79eae90f35f8df723577b4aa8720944 /pkgs/development/libraries/qwt
parent5b5cdcfbac62d8809a03d1edd5f2b219c1d297ca (diff)
downloadnixpkgs-d1796df7c9ffef18a052f6502c4b74de6dc299a1.tar
nixpkgs-d1796df7c9ffef18a052f6502c4b74de6dc299a1.tar.gz
nixpkgs-d1796df7c9ffef18a052f6502c4b74de6dc299a1.tar.bz2
nixpkgs-d1796df7c9ffef18a052f6502c4b74de6dc299a1.tar.lz
nixpkgs-d1796df7c9ffef18a052f6502c4b74de6dc299a1.tar.xz
nixpkgs-d1796df7c9ffef18a052f6502c4b74de6dc299a1.tar.zst
nixpkgs-d1796df7c9ffef18a052f6502c4b74de6dc299a1.zip
qwt: add meta attributes
Diffstat (limited to 'pkgs/development/libraries/qwt')
-rw-r--r--pkgs/development/libraries/qwt/default.nix9
1 files changed, 9 insertions, 0 deletions
diff --git a/pkgs/development/libraries/qwt/default.nix b/pkgs/development/libraries/qwt/default.nix
index 814550d2b18..fe73e0beabd 100644
--- a/pkgs/development/libraries/qwt/default.nix
+++ b/pkgs/development/libraries/qwt/default.nix
@@ -17,4 +17,13 @@ stdenv.mkDerivation rec {
     '';
 
   configurePhase = ''qmake INSTALLBASE=$out -after doc.path=$out/share/doc/${name} -r'';
+
+  meta = with stdenv.lib; {
+    description = "Qt widgets for technical applications";
+    homepage = http://qwt.sourceforge.net/;
+    # LGPL 2.1 plus a few exceptions (more liberal)
+    license = "Qwt License, Version 1.0";
+    platforms = platforms.linux;
+    maintainers = [ maintainers.bjornfor ];
+  };
 }