mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 13:10:33 +00:00
4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
33 lines
890 B
Nix
33 lines
890 B
Nix
{ lib, stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "hddtemp-0.3_beta15";
|
|
|
|
db = fetchurl{
|
|
url = "mirror://savannah/hddtemp/hddtemp.db";
|
|
sha256 = "1fr6qgns6qv7cr40lic5yqwkkc7yjmmgx8j0z6d93csg3smzhhya";
|
|
};
|
|
|
|
src = fetchurl {
|
|
url = "mirror://savannah/hddtemp/hddtemp-0.3-beta15.tar.bz2";
|
|
sha256 = "0nzgg4nl8zm9023wp4dg007z6x3ir60rwbcapr9ks2al81c431b1";
|
|
};
|
|
|
|
# from Gentoo
|
|
patches = [ ./byteswap.patch ./dontwake.patch ./execinfo.patch ./satacmds.patch ];
|
|
|
|
configurePhase =
|
|
''
|
|
mkdir -p $out/nix-support
|
|
cp $db $out/nix-support/hddtemp.db
|
|
./configure --prefix=$out --with-db-path=$out/nix-support/hddtemp.db
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Tool for displaying hard disk temperature";
|
|
homepage = "https://savannah.nongnu.org/projects/hddtemp/";
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|