opkg-utils: new package

Helper scripts for use with the opkg package manager.

Upstream doesn't do releases it seems, so I'm packaging the latest git
version.
This commit is contained in:
Bjørn Forsman 2014-11-05 21:21:58 +01:00
parent f2b6b9871f
commit ef321f539d
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,24 @@
{ stdenv, fetchgit }:
stdenv.mkDerivation rec {
name = "opkg-utils-20141030";
# No releases, only a git tree
src = fetchgit {
url = "git://git.yoctoproject.org/opkg-utils";
rev = "762d9dadce548108d4204c2113461a7dd6f57e60";
sha256 = "a450643fa1353b872166a3d462297fb2eb240554eed7a9186645ffd72b353417";
};
preBuild = ''
makeFlagsArray+=(PREFIX="$out")
'';
meta = with stdenv.lib; {
description = "Helper scripts for use with the opkg package manager";
homepage = http://git.yoctoproject.org/cgit/cgit.cgi/opkg-utils/;
license = licenses.gpl2;
platforms = platforms.all;
maintainers = [ maintainers.bjornfor ];
};
}

View File

@ -12319,6 +12319,8 @@ let
opkg = callPackage ../tools/package-management/opkg { };
opkg-utils = callPackage ../tools/package-management/opkg-utils { };
pgadmin = callPackage ../applications/misc/pgadmin { };
pgf = pgf2;