lol
1{ stdenv, fetchurl, pkgconfig, intltool, gobjectIntrospection, libsoup
2, libxslt, check, vala ? null
3}:
4
5stdenv.mkDerivation rec {
6 name = "libosinfo-0.2.11";
7
8 src = fetchurl {
9 url = "https://fedorahosted.org/releases/l/i/libosinfo/${name}.tar.gz";
10 sha256 = "0889zvidhmpk3nd7c1xhh3fkk9i014dkr6zdlddh89kbflva2sxv";
11 };
12
13 buildInputs = [
14 pkgconfig intltool gobjectIntrospection libsoup libxslt check vala
15 ];
16
17 meta = with stdenv.lib; {
18 description = "Info about OSs, hypervisors and (virtual) hardware devices";
19 homepage = http://libosinfo.org/;
20 license = licenses.lgpl2Plus;
21 platforms = platforms.linux;
22 maintainers = [ maintainers.bjornfor ];
23 };
24}