* Get rid of many instances of "args: with args;", and other coding
guidelines violations. * Updated libsamplerate to 0.1.7. svn path=/nixpkgs/trunk/; revision=22782
This commit is contained in:
@@ -1,25 +1,28 @@
|
||||
args: with args;
|
||||
{ stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "hddtemp-0.3-beta15";
|
||||
|
||||
db = fetchurl{
|
||||
url = http://download.savannah.nongnu.org/releases/hddtemp/hddtemp.db;
|
||||
sha256 = "1fr6qgns6qv7cr40lic5yqwkkc7yjmmgx8j0z6d93csg3smzhhya";
|
||||
};
|
||||
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";
|
||||
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
|
||||
";
|
||||
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";
|
||||
description = "Tool for displaying hard disk temperature";
|
||||
homepage = https://savannah.nongnu.org/projects/hddtemp/;
|
||||
license = "GPL2";
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user