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