2021-03-14 18:12:53 +00:00
|
|
|
{ lib, stdenv, fetchurl, pkg-config, curl, gpgme, libarchive, bzip2, xz, attr, acl, libxml2
|
2015-12-08 21:52:52 +00:00
|
|
|
, autoreconfHook }:
|
2011-06-28 10:45:51 +01:00
|
|
|
|
2014-07-10 09:53:57 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2021-01-20 13:47:58 +00:00
|
|
|
version = "0.4.4";
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "opkg";
|
2011-06-28 10:45:51 +01:00
|
|
|
src = fetchurl {
|
2018-06-28 19:43:35 +01:00
|
|
|
url = "https://downloads.yoctoproject.org/releases/opkg/opkg-${version}.tar.gz";
|
2021-01-20 13:47:58 +00:00
|
|
|
sha256 = "sha256-IhesxYuOsxMAYx66514iLrxwDJwc9kCAiHBdGaRyyDk=";
|
2011-06-28 10:45:51 +01:00
|
|
|
};
|
2014-07-10 09:53:57 +01:00
|
|
|
|
2021-01-17 09:17:16 +00:00
|
|
|
nativeBuildInputs = [ pkg-config autoreconfHook ];
|
2021-03-14 18:12:53 +00:00
|
|
|
buildInputs = [ curl gpgme libarchive bzip2 xz attr acl libxml2 ];
|
2014-07-10 09:53:57 +01:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2014-07-10 09:53:57 +01:00
|
|
|
description = "A lightweight package management system based upon ipkg";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://git.yoctoproject.org/cgit/cgit.cgi/opkg/";
|
2014-07-10 09:53:57 +01:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ pSub ];
|
|
|
|
};
|
2011-06-28 10:45:51 +01:00
|
|
|
}
|