From 6d23fe4501b4b449e675cb91ea6bfcad28e480fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Tue, 27 Mar 2012 22:05:03 +0000 Subject: [PATCH] Adding meta to busybox, and setting me as maintainer, and asking hydra to build it. svn path=/nixpkgs/trunk/; revision=33446 --- pkgs/misc/busybox/default.nix | 8 ++++++++ 1 file changed, 8 insertions(+) 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; + }; }