summary refs log tree commit diff
path: root/pkgs/tools/misc/uutils-coreutils
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2021-03-14 02:11:29 +0100
committerSandro Jäckel <sandro.jaeckel@gmail.com>2021-03-14 02:15:34 +0100
commitda4f44311b7353b2bff1221f6e9684fa45fd39a4 (patch)
tree79284563588ae115718c737ceba93b39a2bf1ceb /pkgs/tools/misc/uutils-coreutils
parent5691cf42cc9b58ff48db03b5404c0077655fc677 (diff)
downloadnixpkgs-da4f44311b7353b2bff1221f6e9684fa45fd39a4.tar
nixpkgs-da4f44311b7353b2bff1221f6e9684fa45fd39a4.tar.gz
nixpkgs-da4f44311b7353b2bff1221f6e9684fa45fd39a4.tar.bz2
nixpkgs-da4f44311b7353b2bff1221f6e9684fa45fd39a4.tar.lz
nixpkgs-da4f44311b7353b2bff1221f6e9684fa45fd39a4.tar.xz
nixpkgs-da4f44311b7353b2bff1221f6e9684fa45fd39a4.tar.zst
nixpkgs-da4f44311b7353b2bff1221f6e9684fa45fd39a4.zip
uutils-coreutils: install symlinks again by converting to stdenv.mkDerivation which executes make,
add enableMulticallBinary option to generate small binaries and last add
me as a maintainer because I have bigger plans for this package.
Diffstat (limited to 'pkgs/tools/misc/uutils-coreutils')
-rw-r--r--pkgs/tools/misc/uutils-coreutils/default.nix44
1 files changed, 31 insertions, 13 deletions
diff --git a/pkgs/tools/misc/uutils-coreutils/default.nix b/pkgs/tools/misc/uutils-coreutils/default.nix
index fd195ab1843..8a04d07b65a 100644
--- a/pkgs/tools/misc/uutils-coreutils/default.nix
+++ b/pkgs/tools/misc/uutils-coreutils/default.nix
@@ -1,8 +1,15 @@
-{ stdenv, fetchFromGitHub, rustPlatform, cargo, cmake, sphinx, lib, prefix ? "uutils-"
+{ lib
+, stdenv
+, fetchFromGitHub
+, rustPlatform
+, cargo
+, sphinx
 , Security
+, prefix ? "uutils-"
+, buildMulticallBinary ? true
 }:
 
-rustPlatform.buildRustPackage rec {
+stdenv.mkDerivation rec {
   pname = "uutils-coreutils";
   version = "0.0.4";
 
@@ -13,21 +20,32 @@ rustPlatform.buildRustPackage rec {
     sha256 = "sha256-z5lDKJpFxXDCQq+0Da/63GGoUXacy5TSn+1gJiMvicc=";
   };
 
-  # too many impure/platform-dependent tests
-  doCheck = false;
+  postPatch = ''
+    # can be removed after https://github.com/uutils/coreutils/pull/1815 is included
+    substituteInPlace GNUmakefile \
+      --replace uutils coreutils
+  '';
 
-  cargoSha256 = "sha256-x/nn2JNe8x+I0G2Vbr2PZAHCghwLBDhKAhkHPQFeL0M=";
+  cargoDeps = rustPlatform.fetchCargoTarball {
+    inherit src;
+    name = "${pname}-${version}";
+    hash = "sha256-x/nn2JNe8x+I0G2Vbr2PZAHCghwLBDhKAhkHPQFeL0M=";
+  };
 
-  makeFlags =
-    [ "CARGO=${cargo}/bin/cargo" "PREFIX=$(out)" "PROFILE=release" "INSTALLDIR_MAN=$(out)/share/man/man1" ]
-    ++ lib.optional (prefix != null) [ "PROG_PREFIX=${prefix}" ];
+  nativeBuildInputs = [ rustPlatform.cargoSetupHook sphinx ];
 
-  nativeBuildInputs = [ cmake cargo sphinx ];
   buildInputs = lib.optional stdenv.isDarwin Security;
 
-  # empty {build,install}Phase to use defaults of `stdenv.mkDerivation` rather than rust defaults
-  buildPhase = "";
-  installPhase = "";
+  makeFlags = [
+    "CARGO=${cargo}/bin/cargo"
+    "PREFIX=${placeholder "out"}"
+    "PROFILE=release"
+    "INSTALLDIR_MAN=${placeholder "out"}/share/man/man1"
+  ] ++ lib.optionals (prefix != null) [ "PROG_PREFIX=${prefix}" ]
+  ++ lib.optionals buildMulticallBinary [ "MULTICALL=y" ];
+
+  # too many impure/platform-dependent tests
+  doCheck = false;
 
   meta = with lib; {
     description = "Cross-platform Rust rewrite of the GNU coreutils";
@@ -36,7 +54,7 @@ rustPlatform.buildRustPackage rec {
       CLI utils in Rust. This repo is to aggregate the GNU coreutils rewrites.
     '';
     homepage = "https://github.com/uutils/coreutils";
-    maintainers = with maintainers; [ siraben ];
+    maintainers = with maintainers; [ siraben SuperSandro2000 ];
     license = licenses.mit;
     platforms = platforms.unix;
   };