mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
hardinfo: init at 0.5.1
Display information about your hardware and operating system.
This commit is contained in:
parent
c34cfa21d4
commit
3e5022c787
2 changed files with 47 additions and 0 deletions
45
pkgs/tools/system/hardinfo/default.nix
Normal file
45
pkgs/tools/system/hardinfo/default.nix
Normal file
|
@ -0,0 +1,45 @@
|
|||
{ stdenv, fetchurl, which, pkgconfig, gtk2, pcre, glib, libxml2
|
||||
, libsoup ? null
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "hardinfo-${version}";
|
||||
version = "0.5.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/project/hardinfo.berlios/hardinfo-${version}.tar.bz2";
|
||||
sha256 = "0yhvfc5icam3i4mphlz0m9d9d2irjw8mbsxq203x59wjgh6nrpx0";
|
||||
};
|
||||
|
||||
# Not adding 'hostname' command, the build shouldn't depend on what the build
|
||||
# host is called.
|
||||
buildInputs = [ which pkgconfig gtk2 pcre glib libxml2 libsoup ];
|
||||
|
||||
# Fixes '#error You must compile this program without "-O"'
|
||||
hardeningDisable = [ "all" ];
|
||||
|
||||
preConfigure = ''
|
||||
patchShebangs configure
|
||||
|
||||
# -std=gnu89 fixes build error, copied from
|
||||
# https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=757525
|
||||
sed -i -e "s/^CFLAGS = \(.*\)/CFLAGS = \1 -std=gnu89/" Makefile.in
|
||||
|
||||
substituteInPlace ./arch/linux/common/modules.h --replace /sbin/modinfo modinfo
|
||||
'';
|
||||
|
||||
# Makefile supports DESTDIR but not PREFIX (it hardcodes $DESTDIR/usr/).
|
||||
installFlags = [ "DESTDIR=$(out)" ];
|
||||
postInstall = ''
|
||||
mv "$out/usr/"* "$out"
|
||||
rmdir "$out/usr"
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://hardinfo.org/;
|
||||
description = "Display information about your hardware and operating system";
|
||||
license = licenses.gpl2;
|
||||
maintainers = with maintainers; [ bjornfor ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
|
@ -2150,6 +2150,8 @@ with pkgs;
|
|||
|
||||
halibut = callPackage ../tools/typesetting/halibut { };
|
||||
|
||||
hardinfo = callPackage ../tools/system/hardinfo { };
|
||||
|
||||
hdapsd = callPackage ../os-specific/linux/hdapsd { };
|
||||
|
||||
hddtemp = callPackage ../tools/misc/hddtemp { };
|
||||
|
|
Loading…
Reference in a new issue