summary refs log tree commit diff
path: root/pkgs/development/libraries/libosinfo/default.nix
blob: 0eb735900b33f758db3f58693bfaaeaf708056e6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ stdenv, fetchurl, pkgconfig, intltool, gobjectIntrospection, libsoup
, libxslt, check, vala ? null
}:

stdenv.mkDerivation rec {
  name = "libosinfo-0.2.10";

  src = fetchurl {
    url = "https://fedorahosted.org/releases/l/i/libosinfo/${name}.tar.gz";
    sha256 = "564bd487a39dc09a10917c1d7a95f739ee7701d9cd0fbabcacea64f615e20a2d";
  };

  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 ];
  };
}