1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-19 12:28:51 +00:00
nixpkgs/pkgs/development/libraries/libosinfo/default.nix

26 lines
727 B
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig, intltool, gobjectIntrospection, libsoup
2016-08-21 18:10:54 +01:00
, libxslt, check, vala_0_23 ? null
}:
stdenv.mkDerivation rec {
name = "libosinfo-0.2.12";
src = fetchurl {
url = "https://fedorahosted.org/releases/l/i/libosinfo/${name}.tar.gz";
sha256 = "1vcg8ylh7q69s9y6hj94dqfffwfbann3i28yqgfc01navf6yl07s";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [
intltool gobjectIntrospection libsoup libxslt check vala_0_23
];
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 ];
};
}