summary refs log tree commit diff
path: root/pkgs/tools/misc/uutils-coreutils/default.nix
blob: a32ce090ecddd28704ef69f0f3fb21d3fcf008a4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{ stdenv, fetchFromGitHub, rustPlatform, cargo, cmake, sphinx, lib, prefix ? "uutils-" }:

rustPlatform.buildRustPackage {
  name = "uutils-coreutils-2019-05-03";
  src = fetchFromGitHub {
    owner = "uutils";
    repo = "coreutils";
    rev = "036dd812958ace22d973acf7b370f58072049dac";
    sha256 = "0d9w3iiphhsk7l5l34682wayp90rgq5a3d94l3qdvhcqkfmpg727";
  };

  # too many impure/platform-dependent tests
  doCheck = false;

  cargoSha256 = "0qnpx2xhckb45q8cgn0xh31dg5k73hqp5mz5zg3micmg7as4b621";

  makeFlags =
    [ "CARGO=${cargo}/bin/cargo" "PREFIX=$(out)" "PROFILE=release" "INSTALLDIR_MAN=$(out)/share/man/man1" ]
    ++ lib.optional (prefix != null) [ "PROG_PREFIX=${prefix}" ];

  nativeBuildInputs = [ cmake ];
  buildInputs = [ cargo sphinx ];

  # empty {build,install}Phase to use defaults of `stdenv.mkDerivation` rather than rust defaults
  buildPhase = "";
  installPhase = "";

  meta = with stdenv.lib; {
    description = "Cross-platform Rust rewrite of the GNU coreutils";
    longDescription = ''
      uutils is an attempt at writing universal (as in cross-platform)
      CLI utils in Rust. This repo is to aggregate the GNU coreutils rewrites.
    '';
    homepage = https://github.com/uutils/coreutils;
    maintainers = with maintainers; [ ma27 ];
    license = licenses.mit;
    platforms = platforms.unix;
  };
}