summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2012-03-27 22:05:03 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2012-03-27 22:05:03 +0000
commit6d23fe4501b4b449e675cb91ea6bfcad28e480fb (patch)
treedce0f27d8de514e8e9feed48932936e3f2f23ecc /pkgs
parent68b5044cc00224ef650e10db29d6e179c038450a (diff)
downloadnixpkgs-6d23fe4501b4b449e675cb91ea6bfcad28e480fb.tar
nixpkgs-6d23fe4501b4b449e675cb91ea6bfcad28e480fb.tar.gz
nixpkgs-6d23fe4501b4b449e675cb91ea6bfcad28e480fb.tar.bz2
nixpkgs-6d23fe4501b4b449e675cb91ea6bfcad28e480fb.tar.lz
nixpkgs-6d23fe4501b4b449e675cb91ea6bfcad28e480fb.tar.xz
nixpkgs-6d23fe4501b4b449e675cb91ea6bfcad28e480fb.tar.zst
nixpkgs-6d23fe4501b4b449e675cb91ea6bfcad28e480fb.zip
Adding meta to busybox, and setting me as maintainer, and asking hydra to build it.
svn path=/nixpkgs/trunk/; revision=33446
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/misc/busybox/default.nix8
1 files changed, 8 insertions, 0 deletions
diff --git a/pkgs/misc/busybox/default.nix b/pkgs/misc/busybox/default.nix
index b5bf9e038c9..ce42a156605 100644
--- a/pkgs/misc/busybox/default.nix
+++ b/pkgs/misc/busybox/default.nix
@@ -64,4 +64,12 @@ stdenv.mkDerivation rec {
         CONFIG_IONICE n
       '' else "");
   };
+
+  meta = {
+    description = "Tiny versions of common UNIX utilities in a single small executable";
+    homepage = http://busybox.net/;
+    license = "GPLv2";
+    maintainers = with stdenv.lib.maintainers; [viric];
+    platforms = with stdenv.lib.platforms; linux;
+  };
 }