opkg: update from 0.2.4 to 3.0.0

This commit is contained in:
Pascal Wittmann 2015-06-08 16:17:49 +02:00
parent 0ed4ad8c63
commit 794feb7879

View File

@ -1,14 +1,14 @@
{ stdenv, fetchurl, pkgconfig, curl, gpgme }:
{ stdenv, fetchurl, pkgconfig, curl, gpgme, libarchive, bzip2, lzma, attr, acl }:
stdenv.mkDerivation rec {
version = "0.2.4";
version = "0.3.0";
name = "opkg-${version}";
src = fetchurl {
url = "http://downloads.yoctoproject.org/releases/opkg/opkg-${version}.tar.gz";
sha256 = "11ih8lay1v7sk5czk3m3cfqil4cp8s7pfz60xnddy7nqazjcfh0g";
sha256 = "13wqai7lgyfjlqvly0bz786wk9frl16a9yzrn27p3wwfvcf5swvz";
};
buildInputs = [ pkgconfig curl gpgme ];
buildInputs = [ pkgconfig curl gpgme libarchive bzip2 lzma attr acl ];
meta = with stdenv.lib; {
description = "A lightweight package management system based upon ipkg";