summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/editors/leafpad
diff options
context:
space:
mode:
authorMarkus Kohlhase <mail@markus-kohlhase.de>2014-10-23 20:35:02 +0200
committerMarkus Kohlhase <mail@markus-kohlhase.de>2014-10-23 20:35:02 +0200
commit4bc0d5bc92a78bf79529d52809ba67bcb11f558b (patch)
treeed24f277b914913bf13d17afc323a74b5ffb4b89 /pkgs/applications/editors/leafpad
parent137eb4c98a90a0e1f2bc79b8f87ea5f754d63be9 (diff)
leafpad: added platform information to the meta section
Diffstat (limited to 'pkgs/applications/editors/leafpad')
-rw-r--r--pkgs/applications/editors/leafpad/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/applications/editors/leafpad/default.nix b/pkgs/applications/editors/leafpad/default.nix
index 0e2e902bbdf7..fc35a993badf 100644
--- a/pkgs/applications/editors/leafpad/default.nix
+++ b/pkgs/applications/editors/leafpad/default.nix
@@ -14,10 +14,11 @@ stdenv.mkDerivation rec {
"--enable-chooser"
];
- meta = {
+ meta = with stdenv.lib; {
description = "A notepad clone for GTK+ 2.0";
homepage = http://tarot.freeshell.org/leafpad;
- maintainers = [ stdenv.lib.maintainers.flosse ];
- license = stdenv.lib.licenses.gpl3;
+ platforms = platforms.linux;
+ maintainers = [ maintainers.flosse ];
+ license = licenses.gpl3;
};
}