2014-07-10 10:53:57 +02:00
|
|
|
{ stdenv, fetchurl, pkgconfig, curl, gpgme }:
|
2011-06-28 11:45:51 +02:00
|
|
|
|
2014-07-10 10:53:57 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2014-10-30 18:49:43 +01:00
|
|
|
version = "0.2.3";
|
2014-07-10 10:53:57 +02:00
|
|
|
name = "opkg-${version}";
|
2011-06-28 11:45:51 +02:00
|
|
|
src = fetchurl {
|
2014-07-10 10:53:57 +02:00
|
|
|
url = "http://downloads.yoctoproject.org/releases/opkg/opkg-${version}.tar.gz";
|
2014-10-30 18:49:43 +01:00
|
|
|
sha256 = "0qaczbw34az20vmh92h7fkswcgq7f6csajx35d4dljzfj85d8jcc";
|
2011-06-28 11:45:51 +02:00
|
|
|
};
|
2014-07-10 10:53:57 +02:00
|
|
|
|
2011-06-28 11:45:51 +02:00
|
|
|
buildInputs = [ pkgconfig curl gpgme ];
|
2014-07-10 10:53:57 +02:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A lightweight package management system based upon ipkg";
|
|
|
|
homepage = http://code.google.com/p/opkg/;
|
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ pSub ];
|
|
|
|
};
|
2011-06-28 11:45:51 +02:00
|
|
|
}
|