python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / package-management / opkg-utils / default.nix
blob922fa4c93e1ecff12c4c76384b62f0498af94e8a
1 { lib, stdenv, fetchgit }:
3 stdenv.mkDerivation {
4   pname = "opkg-utils";
5   version = "unstable-2014-10-30";
7   # No releases, only a git tree
8   src = fetchgit {
9     url = "git://git.yoctoproject.org/opkg-utils";
10     rev = "762d9dadce548108d4204c2113461a7dd6f57e60";
11     sha256 = "09jfkq2p5wv0ifxkw62f4m7pkvpaalh74j2skymi8lh4268krfwz";
12   };
14   preBuild = ''
15     makeFlagsArray+=(PREFIX="$out")
16   '';
18   meta = with lib; {
19     description = "Helper scripts for use with the opkg package manager";
20     homepage = "http://git.yoctoproject.org/cgit/cgit.cgi/opkg-utils/";
21     license = licenses.gpl2;
22     platforms = platforms.all;
23     maintainers = [ maintainers.bjornfor ];
24   };