1 { lib, stdenv, fetchurl, pkg-config, curl, gpgme, libarchive, bzip2, xz, attr, acl, libxml2
4 stdenv.mkDerivation rec {
8 url = "https://downloads.yoctoproject.org/releases/opkg/opkg-${version}.tar.gz";
9 sha256 = "sha256-VoRHIu/yN9rxSqbmgUNvMkUhPFWQ7QzaN6ed9jf/Okw=";
12 nativeBuildInputs = [ pkg-config autoreconfHook ];
13 buildInputs = [ curl gpgme libarchive bzip2 xz attr acl libxml2 ];
16 description = "A lightweight package management system based upon ipkg";
17 homepage = "https://git.yoctoproject.org/cgit/cgit.cgi/opkg/";
18 license = licenses.gpl2;
19 platforms = platforms.linux;
20 maintainers = with maintainers; [ pSub ];