From befc8667147e90e0e63638ae8b5a4bbd8cf56082 Mon Sep 17 00:00:00 2001 From: Dan Peebles Date: Sat, 30 Apr 2016 16:06:17 +0000 Subject: [PATCH] rpm-ostree: add meta and add myself as a maintainer --- pkgs/tools/misc/rpm-ostree/default.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pkgs/tools/misc/rpm-ostree/default.nix b/pkgs/tools/misc/rpm-ostree/default.nix index 372b0a7f270..903aeec3f48 100644 --- a/pkgs/tools/misc/rpm-ostree/default.nix +++ b/pkgs/tools/misc/rpm-ostree/default.nix @@ -37,5 +37,13 @@ in stdenv.mkDerivation rec { preConfigure = '' env NOCONFIGURE=1 ./autogen.sh ''; + + meta = { + 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; + platforms = platforms.linux; + maintainers = with maintainers; [ copumpkin ]; + }; }