nixpkgs/pkgs/development/libraries/libosinfo/default.nix
Bjørn Forsman 160e347acb libosinfo: new package
libosinfo contains "info about OSs, hypervisors and (virtual) hardware
devices".

It is a dependency of gnome-boxes (a virtual and remote machine
application).
2014-07-12 13:28:49 +02:00

25 lines
702 B
Nix

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