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.

+26
+24
pkgs/tools/package-management/opkg-utils/default.nix
··· 1 + { stdenv, fetchgit }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "opkg-utils-20141030"; 5 + 6 + # No releases, only a git tree 7 + src = fetchgit { 8 + url = "git://git.yoctoproject.org/opkg-utils"; 9 + rev = "762d9dadce548108d4204c2113461a7dd6f57e60"; 10 + sha256 = "a450643fa1353b872166a3d462297fb2eb240554eed7a9186645ffd72b353417"; 11 + }; 12 + 13 + preBuild = '' 14 + makeFlagsArray+=(PREFIX="$out") 15 + ''; 16 + 17 + meta = with stdenv.lib; { 18 + description = "Helper scripts for use with the opkg package manager"; 19 + homepage = http://git.yoctoproject.org/cgit/cgit.cgi/opkg-utils/; 20 + license = licenses.gpl2; 21 + platforms = platforms.all; 22 + maintainers = [ maintainers.bjornfor ]; 23 + }; 24 + }
+2
pkgs/top-level/all-packages.nix
··· 12319 12319 12320 12320 opkg = callPackage ../tools/package-management/opkg { }; 12321 12321 12322 + opkg-utils = callPackage ../tools/package-management/opkg-utils { }; 12323 + 12322 12324 pgadmin = callPackage ../applications/misc/pgadmin { }; 12323 12325 12324 12326 pgf = pgf2;