Adding xburst-tools to manage the USB_BOOT mode of the Ben Nanonote (reflashing, ...)

I add the 'confuse' library as a side effect.

svn path=/nixpkgs/trunk/; revision=22817
This commit is contained in:
Lluís Batlle i Rossell
2010-07-29 23:25:42 +00:00
parent 2423a7c821
commit 537ad15e86
4 changed files with 66 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
{stdenv, fetchurl}:
stdenv.mkDerivation rec {
name = "confuse";
version = "2.7";
src = fetchurl {
url = "http://savannah.nongnu.org/download/confuse/${name}-${version}.tar.gz";
sha256 = "0y47r2ashz44wvnxdb18ivpmj8nxhw3y9bf7v9w0g5byhgyp89g3";
};
meta = {
homepage = http://www.nongnu.org/confuse/;
description = "Configuration file parser library";
license = "BSD";
};
}