Merge pull request #22305 from jbaum98/smartmontools
smartmontools: 6.4 -> 6.5 and fix segfault on darwin
This commit is contained in:
commit
1128726064
@ -1,30 +1,18 @@
|
|||||||
{ stdenv, fetchurl
|
{ stdenv, fetchurl,
|
||||||
, IOKit ? null }:
|
IOKit ? null , ApplicationServices ? null }:
|
||||||
|
|
||||||
let
|
|
||||||
version = "6.4";
|
|
||||||
drivedbBranch = "RELEASE_${builtins.replaceStrings ["."] ["_"] version}_DRIVEDB";
|
|
||||||
dbrev = "4167";
|
|
||||||
driverdb = fetchurl {
|
|
||||||
url = "http://sourceforge.net/p/smartmontools/code/${dbrev}/tree/branches/${drivedbBranch}/smartmontools/drivedb.h?format=raw";
|
|
||||||
sha256 = "14rv1cxbpmnq12hjwr3icjiahx5i0ak7j69310c09rah0241l5j1";
|
|
||||||
name = "smartmontools-drivedb.h";
|
|
||||||
};
|
|
||||||
in
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
|
version = "6.5";
|
||||||
name = "smartmontools-${version}";
|
name = "smartmontools-${version}";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://sourceforge/smartmontools/${name}.tar.gz";
|
url = "mirror://sourceforge/smartmontools/${name}.tar.gz";
|
||||||
sha256 = "11bsxcghh7adzdklcslamlynydxb708vfz892d5w7agdq405ddza";
|
sha256 = "1g25r6sx85b5lay5n6sbnqv05qxzj6xsafsp93hnrg1h044bps49";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [] ++ stdenv.lib.optional stdenv.isDarwin IOKit;
|
buildInputs = [] ++ stdenv.lib.optionals stdenv.isDarwin [IOKit ApplicationServices];
|
||||||
|
|
||||||
patchPhase = ''
|
patches = [ ./smartmontools.patch ];
|
||||||
cp ${driverdb} drivedb.h
|
|
||||||
sed -i -e 's@which which >/dev/null || exit 1@alias which="type -p"@' update-smart-drivedb.in
|
|
||||||
'';
|
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Tools for monitoring the health of hard drives";
|
description = "Tools for monitoring the health of hard drives";
|
||||||
|
26
pkgs/tools/system/smartmontools/smartmontools.patch
Normal file
26
pkgs/tools/system/smartmontools/smartmontools.patch
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
diff --git a/../smartmontools-6.5/configure b/./configure
|
||||||
|
index acb028a..5e2c7a1 100755
|
||||||
|
--- a/../smartmontools-6.5/configure
|
||||||
|
+++ b/./configure
|
||||||
|
@@ -6703,7 +6703,7 @@ fi
|
||||||
|
;;
|
||||||
|
*-*-darwin*)
|
||||||
|
os_deps='os_darwin.o'
|
||||||
|
- os_libs='-framework CoreFoundation -framework IOKit'
|
||||||
|
+ os_libs='-framework ApplicationServices -framework IOKit'
|
||||||
|
os_darwin=yes
|
||||||
|
os_man_filter=Darwin
|
||||||
|
;;
|
||||||
|
diff --git a/../smartmontools-6.5/configure.ac b/./configure.ac
|
||||||
|
index 6bd61d7..32ff50c 100644
|
||||||
|
--- a/../smartmontools-6.5/configure.ac
|
||||||
|
+++ b/./configure.ac
|
||||||
|
@@ -508,7 +508,7 @@ case "${host}" in
|
||||||
|
;;
|
||||||
|
*-*-darwin*)
|
||||||
|
os_deps='os_darwin.o'
|
||||||
|
- os_libs='-framework CoreFoundation -framework IOKit'
|
||||||
|
+ os_libs='-framework ApplicationServices -framework IOKit'
|
||||||
|
os_darwin=yes
|
||||||
|
os_man_filter=Darwin
|
||||||
|
;;
|
@ -3804,7 +3804,7 @@ with pkgs;
|
|||||||
slsnif = callPackage ../tools/misc/slsnif { };
|
slsnif = callPackage ../tools/misc/slsnif { };
|
||||||
|
|
||||||
smartmontools = callPackage ../tools/system/smartmontools {
|
smartmontools = callPackage ../tools/system/smartmontools {
|
||||||
inherit (darwin.apple_sdk.frameworks) IOKit;
|
inherit (darwin.apple_sdk.frameworks) IOKit ApplicationServices;
|
||||||
};
|
};
|
||||||
|
|
||||||
smbldaptools = callPackage ../tools/networking/smbldaptools {
|
smbldaptools = callPackage ../tools/networking/smbldaptools {
|
||||||
|
Loading…
Reference in New Issue
Block a user