nerdfonts: fix wrong attribute name in error message (#364463)
[NixPkgs.git] / pkgs / by-name / id / idle3tools / package.nix
blob141da480488e2ad5e4a4dd5e5bccf76de951ad6f
2   lib,
3   stdenv,
4   fetchurl,
5 }:
7 stdenv.mkDerivation rec {
8   pname = "idle3-tools";
9   version = "0.9.1";
11   src = fetchurl {
12     url = "mirror://sourceforge/idle3-tools/idle3-tools-${version}.tgz";
13     sha256 = "00ia7xq9yldxyl9gz0mr4xa568nav14p0fnv82f2rbbkg060cy4p";
14   };
16   preInstall = ''
17     installFlags=DESTDIR=$out
18   '';
20   meta = {
21     homepage = "https://idle3-tools.sourceforge.net/";
22     description = "Tool to get/set the infamous idle3 timer in WD HDDs";
23     license = lib.licenses.gpl3;
24     maintainers = [ ];
25     platforms = with lib.platforms; linux;
26     mainProgram = "idle3ctl";
27   };