2016-08-09 22:24:59 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, curl, gpgme, libarchive, bzip2, lzma, 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 {
|
2018-12-30 17:48:13 +00:00
|
|
|
version = "0.4.0";
|
2014-07-10 09:53:57 +01:00
|
|
|
name = "opkg-${version}";
|
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";
|
2018-12-30 17:48:13 +00:00
|
|
|
sha256 = "1zp6gyggqv359myagjsr0knq66ax64q3irx889kqzbd2v0ahbh7n";
|
2011-06-28 10:45:51 +01:00
|
|
|
};
|
2014-07-10 09:53:57 +01:00
|
|
|
|
2016-11-27 14:57:56 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig autoreconfHook ];
|
|
|
|
buildInputs = [ curl gpgme libarchive bzip2 lzma attr acl libxml2 ];
|
2014-07-10 09:53:57 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A lightweight package management system based upon ipkg";
|
2017-10-27 00:44:19 +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
|
|
|
}
|