biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / misc / toybox / default.nix
blob99167c87fa849598ced2c0978464e13a2def1e91
2   stdenv, lib, fetchFromGitHub, which,
3   buildPackages, libxcrypt, libiconv,
4   enableStatic ? stdenv.hostPlatform.isStatic,
5   enableMinimal ? false,
6   extraConfig ? ""
7 }:
9 let
10   inherit (lib) optionals;
13 stdenv.mkDerivation rec {
14   pname = "toybox";
15   version = "0.8.11";
17   src = fetchFromGitHub {
18     owner = "landley";
19     repo = pname;
20     rev = version;
21     sha256 = "sha256-7izs2C5/czec0Dt3apL8s7luARAlw4PfUFy9Xsxb0zw=";
22   };
24   depsBuildBuild = optionals (stdenv.hostPlatform != stdenv.buildPlatform) [ buildPackages.stdenv.cc ];
25   buildInputs = [
26     libxcrypt
27   ] ++ optionals stdenv.hostPlatform.isDarwin [
28     libiconv
29   ] ++ optionals (enableStatic && stdenv.cc.libc ? static) [
30     stdenv.cc.libc
31     stdenv.cc.libc.static
32   ];
34   postPatch = "patchShebangs .";
36   inherit extraConfig;
37   passAsFile = [ "extraConfig" ];
39   configurePhase = ''
40     make ${if enableMinimal then
41       "allnoconfig"
42     else
43       if stdenv.hostPlatform.isFreeBSD then
44         "freebsd_defconfig"
45       else
46         if stdenv.hostPlatform.isDarwin then
47           "macos_defconfig"
48         else
49           "defconfig"
50     }
52     cat $extraConfigPath .config > .config-
53     mv .config- .config
55     make oldconfig
56   '';
58   makeFlags = [ "PREFIX=$(out)/bin" ] ++ optionals enableStatic [ "LDFLAGS=--static" ];
60   installTargets = [ "install_flat" ];
62   # tests currently (as of 0.8.0) get stuck in an infinite loop...
63   # ...this is fixed in latest git, so doCheck can likely be enabled for next release
64   # see https://github.com/landley/toybox/commit/b928ec480cd73fd83511c0f5ca786d1b9f3167c3
65   #doCheck = true;
66   nativeCheckInputs = [ which ]; # used for tests with checkFlags = [ "DEBUG=true" ];
67   checkTarget = "tests";
69   env.NIX_CFLAGS_COMPILE = "-Wno-error";
71   meta = with lib; {
72     description = "Lightweight implementation of some Unix command line utilities";
73     homepage = "https://landley.net/toybox/";
74     license = licenses.bsd0;
75     platforms = with platforms; linux ++ darwin ++ freebsd;
76     maintainers = with maintainers; [ hhm ];
77     priority = 10;
78   };