0bd5a83403
Unbreaks gnome-boxes 3.18
25 lines
690 B
Nix
25 lines
690 B
Nix
{ stdenv, fetchurl, pkgconfig, intltool, gobjectIntrospection, libsoup
|
|
, libxslt, check, vala ? null
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libosinfo-0.2.12";
|
|
|
|
src = fetchurl {
|
|
url = "https://fedorahosted.org/releases/l/i/libosinfo/${name}.tar.gz";
|
|
sha256 = "1vcg8ylh7q69s9y6hj94dqfffwfbann3i28yqgfc01navf6yl07s";
|
|
};
|
|
|
|
buildInputs = [
|
|
pkgconfig intltool gobjectIntrospection libsoup libxslt check vala
|
|
];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Info about OSs, hypervisors and (virtual) hardware devices";
|
|
homepage = http://libosinfo.org/;
|
|
license = licenses.lgpl2Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.bjornfor ];
|
|
};
|
|
}
|