From 670af1fba859ae2834325b4e764fb3c3d08b662a Mon Sep 17 00:00:00 2001 From: Yureka Date: Sun, 31 Oct 2021 12:22:45 +0100 Subject: hd-idle: package rewrite Someone ported the original hd-idle to Golang and is maintaining it. This replaces the hd-idle package with the actively maintained Golang port. I assume nobody will need unmaintained original version since the Golang port can do everything the original version can do. --- pkgs/os-specific/linux/hd-idle/default.nix | 29 ++++++++++++++++------------- 1 file changed, 16 insertions(+), 13 deletions(-) (limited to 'pkgs/os-specific/linux/hd-idle') diff --git a/pkgs/os-specific/linux/hd-idle/default.nix b/pkgs/os-specific/linux/hd-idle/default.nix index 301a218ff62..a1f355a849c 100644 --- a/pkgs/os-specific/linux/hd-idle/default.nix +++ b/pkgs/os-specific/linux/hd-idle/default.nix @@ -1,25 +1,28 @@ -{ lib, stdenv, fetchurl }: +{ lib, buildGoModule, fetchFromGitHub, installShellFiles }: -stdenv.mkDerivation rec { +buildGoModule rec { pname = "hd-idle"; - version = "1.05"; + version = "1.16"; - src = fetchurl { - url = "mirror://sourceforge/project/hd-idle/hd-idle-${version}.tgz"; - sha256 = "031sm996s0rhy3z91b9xvyimsj2yd2fhsww2al2hxda5s5wzxzjf"; + src = fetchFromGitHub { + owner = "adelolmo"; + repo = pname; + rev = "v${version}"; + sha256 = "sha256-LZcMwF/BhHiWWXMcrzbk8GyvwXdA3B2olmbOBxQwV5g="; }; - prePatch = '' - substituteInPlace Makefile \ - --replace "-g root -o root" "" - ''; + vendorSha256 = null; + + nativeBuildInputs = [ installShellFiles ]; - installFlags = [ "TARGET_DIR=$(out)" ]; + postInstall = '' + installManPage debian/hd-idle.8 + ''; meta = with lib; { description = "Spins down external disks after a period of idle time"; - homepage = "http://hd-idle.sourceforge.net/"; - license = licenses.gpl2Plus; + homepage = "https://github.com/adelolmo/hd-idle"; + license = licenses.gpl3Plus; platforms = platforms.linux; maintainers = [ maintainers.rycee ]; }; -- cgit 1.4.1