23 lines
759 B
Nix
23 lines
759 B
Nix
{ lib, stdenv, fetchurl, pkg-config, curl, gpgme, libarchive, bzip2, xz, attr, acl, libxml2
|
|
, autoreconfHook }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "0.6.0";
|
|
pname = "opkg";
|
|
src = fetchurl {
|
|
url = "https://downloads.yoctoproject.org/releases/opkg/opkg-${version}.tar.gz";
|
|
sha256 = "sha256-VoRHIu/yN9rxSqbmgUNvMkUhPFWQ7QzaN6ed9jf/Okw=";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config autoreconfHook ];
|
|
buildInputs = [ curl gpgme libarchive bzip2 xz attr acl libxml2 ];
|
|
|
|
meta = with lib; {
|
|
description = "A lightweight package management system based upon ipkg";
|
|
homepage = "https://git.yoctoproject.org/cgit/cgit.cgi/opkg/";
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ pSub ];
|
|
};
|
|
}
|