libhif, rpm-ostree: fix broken meta

Forgot to add stdenv.lib to scope!
This commit is contained in:
Dan Peebles 2016-04-30 16:23:16 +00:00
parent 30ddf58197
commit 6af34124a4
2 changed files with 2 additions and 2 deletions

View file

@ -38,7 +38,7 @@ in stdenv.mkDerivation rec {
env NOCONFIGURE=1 ./autogen.sh
'';
meta = {
meta = with stdenv.lib; {
description = "A hybrid image/package system. It uses OSTree as an image format, and uses RPM as a component model";
homepage = "https://rpm-ostree.readthedocs.io/en/latest/";
license = licenses.lgpl2Plus;

View file

@ -26,7 +26,7 @@ stdenv.mkDerivation rec {
# ibhif/hif-packagedelta.h includes solv/pool.h
propagatedBuildInputs = [ libsolv ];
meta = {
meta = with stdenv.lib; {
description = "A library that provides a high level package-manager. It uses librepo and hawkey under the hood.";
license = licenses.lgpl2Plus;
platforms = platforms.linux;