summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/misc
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/misc')
-rw-r--r--pkgs/applications/misc/eaglemode/default.nix11
-rw-r--r--pkgs/applications/misc/truecrypt/default.nix2
2 files changed, 9 insertions, 4 deletions
diff --git a/pkgs/applications/misc/eaglemode/default.nix b/pkgs/applications/misc/eaglemode/default.nix
index d572426767e8..57cb21904f48 100644
--- a/pkgs/applications/misc/eaglemode/default.nix
+++ b/pkgs/applications/misc/eaglemode/default.nix
@@ -20,8 +20,11 @@ stdenv.mkDerivation {
ln -s $out/eaglemode.sh $out/bin/eaglemode.sh
'';
- meta = { homepage = "http://eaglemode.sourceforge.net";
- description = "Zoomable User Interface";
- license="GPLv3";
- };
+ meta = {
+ homepage = "http://eaglemode.sourceforge.net";
+ description = "Zoomable User Interface";
+ license="GPLv3";
+ maintainersv = with stdenv.lib.maintainers; [viric];
+ platforms = with stdenv.lib.platforms; linux;
+ };
}
diff --git a/pkgs/applications/misc/truecrypt/default.nix b/pkgs/applications/misc/truecrypt/default.nix
index 1cd7eb2c237c..572b096e03a5 100644
--- a/pkgs/applications/misc/truecrypt/default.nix
+++ b/pkgs/applications/misc/truecrypt/default.nix
@@ -73,5 +73,7 @@ stdenv.mkDerivation {
description = "Free Open-Source filesystem on-the-fly encryption";
homepage = http://www.truecrypt.org/;
license = "TrueCrypt License Version 2.6";
+ maintainers = with stdenv.lib.maintainers; [viric];
+ platforms = with stdenv.lib.platforms; linux;
};
}