summary refs log tree commit diff
path: root/pkgs/os-specific/linux/dmidecode
diff options
context:
space:
mode:
authorMichael Raskin <7c6f434c@mail.ru>2008-01-08 00:18:20 +0000
committerMichael Raskin <7c6f434c@mail.ru>2008-01-08 00:18:20 +0000
commitc0ce72bfc2422b33b6d0582bb3af9dabc8ac0f00 (patch)
tree372658456ea4ddc67788ba7815ed8335c3dd3190 /pkgs/os-specific/linux/dmidecode
parentfc345ae1305ec23d7d9c9a2162a85736df7fe4d5 (diff)
downloadnixpkgs-c0ce72bfc2422b33b6d0582bb3af9dabc8ac0f00.tar
nixpkgs-c0ce72bfc2422b33b6d0582bb3af9dabc8ac0f00.tar.gz
nixpkgs-c0ce72bfc2422b33b6d0582bb3af9dabc8ac0f00.tar.bz2
nixpkgs-c0ce72bfc2422b33b6d0582bb3af9dabc8ac0f00.tar.lz
nixpkgs-c0ce72bfc2422b33b6d0582bb3af9dabc8ac0f00.tar.xz
nixpkgs-c0ce72bfc2422b33b6d0582bb3af9dabc8ac0f00.tar.zst
nixpkgs-c0ce72bfc2422b33b6d0582bb3af9dabc8ac0f00.zip
Added dmidecode and kqemu
svn path=/nixpkgs/trunk/; revision=10098
Diffstat (limited to 'pkgs/os-specific/linux/dmidecode')
-rw-r--r--pkgs/os-specific/linux/dmidecode/2.9.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/os-specific/linux/dmidecode/2.9.nix b/pkgs/os-specific/linux/dmidecode/2.9.nix
new file mode 100644
index 00000000000..787846465d8
--- /dev/null
+++ b/pkgs/os-specific/linux/dmidecode/2.9.nix
@@ -0,0 +1,22 @@
+args : with args;
+	with builderDefs {
+		src = /* put a fetchurl here */
+		fetchurl {
+			url = http://download.savannah.gnu.org/releases/dmidecode/dmidecode-2.9.tar.bz2;
+			sha256 = "05g0ln400fhqjspg9h4x0a1dvmwiyjq5rk9q9kimxvywbg1b53l8";
+		};
+
+		buildInputs = [];
+		configureFlags = [];
+		makeFlags = "prefix=\$out";
+	} null; /* null is a terminator for sumArgs */
+stdenv.mkDerivation rec {
+	name = "dmidecode-"+version;
+	builder = writeScript (name + "-builder")
+		(textClosure [ doMakeInstall doForceShare doPropagate]);
+	meta = {
+		description = "
+		Tool to decode Desktop Management Interface and SBIOS data.
+";
+	};
+}