mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
libhif, rpm-ostree: fix broken meta
Forgot to add stdenv.lib to scope!
This commit is contained in:
parent
30ddf58197
commit
6af34124a4
2 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue