Author: raskin
Date: Wed Jun 29 09:53:35 2011
New Revision: 27557
URL: https://svn.nixos.org/websvn/nix/?rev=27557&sc=1
Log:
Adding wavemon
Added:
nixpkgs/trunk/pkgs/tools/networking/wavemon/
nixpkgs/trunk/pkgs/tools/networking/wavemon/default.nix
Modified:
nixpkgs/trunk/pkgs/top-level/all-packages.nix
Added: nixpkgs/trunk/pkgs/tools/networking/wavemon/default.nix
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ nixpkgs/trunk/pkgs/tools/networking/wavemon/default.nix Wed Jun 29
09:53:35 2011 (r27557)
@@ -0,0 +1,48 @@
+x@{builderDefsPackage
+ , ncurses
+ , ...}:
+builderDefsPackage
+(a :
+let
+ helperArgNames = ["stdenv" "fetchurl" "builderDefsPackage"] ++
+ [];
+
+ buildInputs = map (n: builtins.getAttr n x)
+ (builtins.attrNames (builtins.removeAttrs x helperArgNames));
+ sourceInfo = rec {
+ baseName="wavemon";
+ version="0.7.2";
+ name="${baseName}-${version}";
+
url="http://eden-feed.erg.abdn.ac.uk/wavemon/stable-releases/${name}.tar.bz2";
+ hash="1w1nq082mpjkcj7q6qs80104vki9kddwqv1wch6nmwwh0l72dgma";
+ };
+in
+rec {
+ src = a.fetchurl {
+ url = sourceInfo.url;
+ sha256 = sourceInfo.hash;
+ };
+
+ inherit (sourceInfo) name version;
+ inherit buildInputs;
+
+ /* doConfigure should be removed if not needed */
+ phaseNames = ["doConfigure" "doMakeInstall"];
+
+ meta = {
+ description = "WiFi state monitor";
+ maintainers = with a.lib.maintainers;
+ [
+ raskin
+ ];
+ platforms = with a.lib.platforms;
+ linux;
+ license = a.lib.licenses.gpl2Plus;
+ };
+ passthru = {
+ updateInfo = {
+ downloadPage = "http://eden-feed.erg.abdn.ac.uk/wavemon/";
+ };
+ };
+}) x
+
Modified: nixpkgs/trunk/pkgs/top-level/all-packages.nix
==============================================================================
--- nixpkgs/trunk/pkgs/top-level/all-packages.nix Wed Jun 29 07:52:27
2011 (r27556)
+++ nixpkgs/trunk/pkgs/top-level/all-packages.nix Wed Jun 29 09:53:35
2011 (r27557)
@@ -1446,6 +1446,8 @@
wakelan = callPackage ../tools/networking/wakelan { };
+ wavemon = callPackage ../tools/networking/wavemon { };
+
w3cCSSValidator = callPackage ../tools/misc/w3c-css-validator {
tomcat = tomcat6;
};
_______________________________________________
nix-commits mailing list
[email protected]
http://mail.cs.uu.nl/mailman/listinfo/nix-commits