2016-08-09 23:24:59 +02:00
|
|
|
{ stdenv, fetchurl, pkgconfig, curl, gpgme, libarchive, bzip2, lzma, attr, acl, libxml2
|
2015-12-08 22:52:52 +01:00
|
|
|
, autoreconfHook }:
|
2011-06-28 11:45:51 +02:00
|
|
|
|
2014-07-10 10:53:57 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2020-07-10 04:23:29 +02:00
|
|
|
version = "0.4.3";
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "opkg";
|
2011-06-28 11:45:51 +02:00
|
|
|
src = fetchurl {
|
2018-06-28 20:43:35 +02:00
|
|
|
url = "https://downloads.yoctoproject.org/releases/opkg/opkg-${version}.tar.gz";
|
2020-07-10 04:23:29 +02:00
|
|
|
sha256 = "06278gmb26b9nl8l328cc2c2mhfi0dhac65syws17kf09f2m596x";
|
2011-06-28 11:45:51 +02:00
|
|
|
};
|
2014-07-10 10:53:57 +02:00
|
|
|
|
2016-11-27 15:57:56 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig autoreconfHook ];
|
|
|
|
buildInputs = [ curl gpgme libarchive bzip2 lzma attr acl libxml2 ];
|
2014-07-10 10:53:57 +02:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A lightweight package management system based upon ipkg";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://git.yoctoproject.org/cgit/cgit.cgi/opkg/";
|
2014-07-10 10:53:57 +02:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ pSub ];
|
|
|
|
};
|
2011-06-28 11:45:51 +02:00
|
|
|
}
|