Update opkg to latest version, adpot it and add meta-information.
This commit is contained in:
parent
310ba8da43
commit
c713d163c0
@ -1,10 +1,20 @@
|
|||||||
{stdenv, fetchurl, pkgconfig, curl, gpgme}:
|
{ stdenv, fetchurl, pkgconfig, curl, gpgme }:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation rec {
|
||||||
name = "opkg-0.1.8";
|
version = "0.2.2";
|
||||||
|
name = "opkg-${version}";
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = http://opkg.googlecode.com/files/opkg-0.1.8.tar.gz;
|
url = "http://downloads.yoctoproject.org/releases/opkg/opkg-${version}.tar.gz";
|
||||||
sha256 = "0q0w7hmc6zk7pnddamd5v8d76qnh3043lzh5np24jbb6plqbz57z";
|
sha256 = "0ax10crp2grrpl20gl5iqfw37d5qz6h790lyyv2ali45agklqmda";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ pkgconfig curl gpgme ];
|
buildInputs = [ pkgconfig curl gpgme ];
|
||||||
|
|
||||||
|
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 ];
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user