summary refs log tree commit diff
path: root/pkgs/tools/system
diff options
context:
space:
mode:
authorBjørn Forsman <bjorn.forsman@gmail.com>2014-12-19 07:52:14 +0100
committerBjørn Forsman <bjorn.forsman@gmail.com>2014-12-19 08:01:08 +0100
commit4b65f5365210111a6a3d3bcf69401df324423f2d (patch)
treed9ae44885a67c8fc28c12db3456f21117ba7ffba /pkgs/tools/system
parent87610ca0fde1041e4d02c0d8ac970ccc0ddcd488 (diff)
downloadnixpkgs-4b65f5365210111a6a3d3bcf69401df324423f2d.tar
nixpkgs-4b65f5365210111a6a3d3bcf69401df324423f2d.tar.gz
nixpkgs-4b65f5365210111a6a3d3bcf69401df324423f2d.tar.bz2
nixpkgs-4b65f5365210111a6a3d3bcf69401df324423f2d.tar.lz
nixpkgs-4b65f5365210111a6a3d3bcf69401df324423f2d.tar.xz
nixpkgs-4b65f5365210111a6a3d3bcf69401df324423f2d.tar.zst
nixpkgs-4b65f5365210111a6a3d3bcf69401df324423f2d.zip
gdmap: set meta attributes (license, platforms, maintainers)
Diffstat (limited to 'pkgs/tools/system')
-rw-r--r--pkgs/tools/system/gdmap/default.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/pkgs/tools/system/gdmap/default.nix b/pkgs/tools/system/gdmap/default.nix
index e9592b36666..3d3809610e4 100644
--- a/pkgs/tools/system/gdmap/default.nix
+++ b/pkgs/tools/system/gdmap/default.nix
@@ -12,8 +12,11 @@ stdenv.mkDerivation rec {
 
   patches = [ ./get_sensitive.patch ./set_flags.patch ];
 
-  meta = {
+  meta = with stdenv.lib; {
     homepage = http://gdmap.sourceforge.net;
     description = "Recursive rectangle map of disk usage";
+    license = licenses.gpl2;
+    platforms = platforms.all;
+    maintainers = [ maintainers.bjornfor ];
   };
 }