summary refs log tree commit diff
path: root/pkgs/tools/misc/hddtemp
diff options
context:
space:
mode:
authorMarc Weber <marco-oweber@gmx.de>2008-05-11 11:18:16 +0000
committerMarc Weber <marco-oweber@gmx.de>2008-05-11 11:18:16 +0000
commite38b426fda35cd84a112eab20f440333d02f83a4 (patch)
tree5c74c9b6d463bac20d1cac641820ec893a9d6556 /pkgs/tools/misc/hddtemp
parentacf7290ae725d810280c493255069c7ff2c2fc43 (diff)
downloadnixpkgs-e38b426fda35cd84a112eab20f440333d02f83a4.tar
nixpkgs-e38b426fda35cd84a112eab20f440333d02f83a4.tar.gz
nixpkgs-e38b426fda35cd84a112eab20f440333d02f83a4.tar.bz2
nixpkgs-e38b426fda35cd84a112eab20f440333d02f83a4.tar.lz
nixpkgs-e38b426fda35cd84a112eab20f440333d02f83a4.tar.xz
nixpkgs-e38b426fda35cd84a112eab20f440333d02f83a4.tar.zst
nixpkgs-e38b426fda35cd84a112eab20f440333d02f83a4.zip
fixing bad location of hddtemp (spotted by gour) (tools -> tools/misc)
svn path=/nixpkgs/trunk/; revision=11812
Diffstat (limited to 'pkgs/tools/misc/hddtemp')
-rw-r--r--pkgs/tools/misc/hddtemp/default.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/tools/misc/hddtemp/default.nix b/pkgs/tools/misc/hddtemp/default.nix
new file mode 100644
index 00000000000..9f285a6cd51
--- /dev/null
+++ b/pkgs/tools/misc/hddtemp/default.nix
@@ -0,0 +1,25 @@
+args: with args;
+stdenv.mkDerivation {
+  name = "hddtemp-0.3-beta15";
+
+  db = fetchurl{
+              url = http://download.savannah.nongnu.org/releases/hddtemp/hddtemp.db;
+              sha256 = "1fr6qgns6qv7cr40lic5yqwkkc7yjmmgx8j0z6d93csg3smzhhya";
+       };
+  src = fetchurl {
+            url = http://download.savannah.nongnu.org/releases/hddtemp/hddtemp-0.3-beta15.tar.bz2;
+            sha256 = "0nzgg4nl8zm9023wp4dg007z6x3ir60rwbcapr9ks2al81c431b1";
+  };
+
+  configurePhase = "
+    ensureDir \$out/nix-support
+    cp \$db \$out/nix-support/hddtemp.db
+    ./configure --prefix=\$out --with-db-path=\$out/nix-support/hddtemp.db
+  "; 
+
+  meta = { 
+      description = "shows the harddisk temperature";
+      homepage = https://savannah.nongnu.org/projects/hddtemp/;
+      license = "GPL2";
+  };
+}