nixpkgs/pkgs/tools/package-management/opkg/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

50 lines
895 B
Nix
Raw Normal View History

2023-02-23 09:27:33 +01:00
{ lib
, stdenv
, fetchurl
, pkg-config
, curl
, gpgme
, libarchive
, bzip2
, xz
, attr
, acl
, libxml2
, autoreconfHook
}:
stdenv.mkDerivation rec {
pname = "opkg";
2023-02-23 09:27:33 +01:00
version = "0.6.1";
src = fetchurl {
url = "https://downloads.yoctoproject.org/releases/opkg/opkg-${version}.tar.gz";
2023-02-23 09:27:33 +01:00
hash = "sha256-6H/MtXXGTTrAVZREAWonlfEhJZhqDaiWurl8ShovGyo=";
};
2023-02-23 09:27:33 +01:00
nativeBuildInputs = [
pkg-config
autoreconfHook
];
buildInputs = [
curl
gpgme
libarchive
bzip2
xz
attr
acl
libxml2
];
meta = with lib; {
description = "A lightweight package management system based upon ipkg";
homepage = "https://git.yoctoproject.org/cgit/cgit.cgi/opkg/";
2023-02-23 09:24:09 +01:00
changelog = "https://git.yoctoproject.org/opkg/tree/NEWS?h=v${version}";
2023-02-23 09:25:05 +01:00
license = licenses.gpl2Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ pSub ];
};
}