2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchgit }:
|
2014-11-05 20:21:58 +00:00
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
stdenv.mkDerivation {
|
2021-07-27 19:35:51 +01:00
|
|
|
pname = "opkg-utils";
|
|
|
|
version = "unstable-2014-10-30";
|
2014-11-05 20:21:58 +00:00
|
|
|
|
|
|
|
# No releases, only a git tree
|
|
|
|
src = fetchgit {
|
|
|
|
url = "git://git.yoctoproject.org/opkg-utils";
|
|
|
|
rev = "762d9dadce548108d4204c2113461a7dd6f57e60";
|
2016-06-02 12:26:44 +01:00
|
|
|
sha256 = "09jfkq2p5wv0ifxkw62f4m7pkvpaalh74j2skymi8lh4268krfwz";
|
2014-11-05 20:21:58 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
preBuild = ''
|
|
|
|
makeFlagsArray+=(PREFIX="$out")
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2014-11-05 20:21:58 +00:00
|
|
|
description = "Helper scripts for use with the opkg package manager";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://git.yoctoproject.org/cgit/cgit.cgi/opkg-utils/";
|
2014-11-05 20:21:58 +00:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = [ maintainers.bjornfor ];
|
|
|
|
};
|
|
|
|
}
|