hddtemp: correct licence: gpl2 -> gpl2Plus

This commit is contained in:
Tobias Geerinckx-Rice 2016-03-16 01:13:00 +01:00
parent d920f67b64
commit df0f4baec4

View File

@ -23,10 +23,10 @@ stdenv.mkDerivation {
./configure --prefix=$out --with-db-path=$out/nix-support/hddtemp.db ./configure --prefix=$out --with-db-path=$out/nix-support/hddtemp.db
''; '';
meta = { meta = with stdenv.lib; {
description = "Tool for displaying hard disk temperature"; description = "Tool for displaying hard disk temperature";
homepage = https://savannah.nongnu.org/projects/hddtemp/; homepage = https://savannah.nongnu.org/projects/hddtemp/;
license = stdenv.lib.licenses.gpl2; license = licenses.gpl2Plus;
platforms = stdenv.lib.platforms.linux; platforms = platforms.linux;
}; };
} }