python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / package-management / opkg / default.nix
blob2fbdebebb10d329d1d7a3a20aa1891b49c759276
1 { lib, stdenv, fetchurl, pkg-config, curl, gpgme, libarchive, bzip2, xz, attr, acl, libxml2
2 , autoreconfHook }:
4 stdenv.mkDerivation rec {
5   version = "0.6.0";
6   pname = "opkg";
7   src = fetchurl {
8     url = "https://downloads.yoctoproject.org/releases/opkg/opkg-${version}.tar.gz";
9     sha256 = "sha256-VoRHIu/yN9rxSqbmgUNvMkUhPFWQ7QzaN6ed9jf/Okw=";
10   };
12   nativeBuildInputs = [ pkg-config autoreconfHook ];
13   buildInputs = [ curl gpgme libarchive bzip2 xz attr acl libxml2 ];
15   meta = with lib; {
16     description = "A lightweight package management system based upon ipkg";
17     homepage = "https://git.yoctoproject.org/cgit/cgit.cgi/opkg/";
18     license = licenses.gpl2;
19     platforms = platforms.linux;
20     maintainers = with maintainers; [ pSub ];
21   };