hwinfo: 21.23 -> 21.38

This commit is contained in:
ndowens 2017-02-28 20:38:22 -06:00 committed by Bjørn Forsman
parent b2919b454f
commit d12030d175

View file

@ -1,12 +1,14 @@
{ stdenv, fetchurl, libx86emu, flex, perl }:
{ stdenv, fetchFromGitHub, libx86emu, flex, perl }:
stdenv.mkDerivation rec {
name = "hwinfo-${version}";
version = "21.23";
version = "21.38";
src = fetchurl {
url = "https://github.com/opensuse/hwinfo/archive/${version}.tar.gz";
sha256 = "1a8815zp3a7n2jx0cn0hcr69rfr6vmw8r8grbn5mv61g90bbcj6p";
src = fetchFromGitHub {
owner = "opensuse";
repo = "hwinfo";
rev = "${version}";
sha256 = "17a1nx906gdl9br1wf6xmhjy195szaxxmyb119vayw4q112rjdql";
};
patchPhase = ''
@ -29,7 +31,7 @@ stdenv.mkDerivation rec {
description = "Hardware detection tool from openSUSE";
license = licenses.gpl2;
homepage = https://github.com/openSUSE/hwinfo;
maintainers = with maintainers; [ bobvanderlinden ];
maintainers = with maintainers; [ bobvanderlinden ndowens ];
platforms = platforms.unix;
};
}