Merge pull request #271598 from h7x4/pkgs-usbview-update

usbview: 2.0 -> 3.1
This commit is contained in:
Weijia Wang 2023-12-09 01:12:59 +01:00 committed by GitHub
commit e7fabe8d3f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,23 +3,25 @@
, fetchFromGitHub
, autoreconfHook
, pkg-config
, imagemagick
, gtk3
}:
stdenv.mkDerivation rec {
pname = "usbview";
version = "2.0";
version = "3.1";
src = fetchFromGitHub {
owner = "gregkh";
repo = "usbview";
rev = "v${version}";
sha256 = "1cw5jjpidjn34rxdjslpdlj99k4dqaq1kz6mplv5hgjdddijvn5p";
hash = "sha256-h+sB83BYsrB2VxwtatPWNiM0WdTCMY289nh+/0o8GOw=";
};
nativeBuildInputs = [
autoreconfHook
pkg-config
imagemagick
];
buildInputs = [
@ -30,7 +32,7 @@ stdenv.mkDerivation rec {
description = "USB viewer for Linux";
license = licenses.gpl2Only;
homepage = "http://www.kroah.com/linux-usb/";
maintainers = with maintainers; [ shamilton ];
maintainers = with maintainers; [ shamilton h7x4 ];
platforms = platforms.linux;
mainProgram = "usbview";
};