summary refs log tree commit diff
path: root/pkgs/tools/misc/coreutils
diff options
context:
space:
mode:
authorArtturin <Artturin@artturin.com>2021-12-21 20:46:46 +0200
committerArtturin <Artturin@artturin.com>2021-12-21 20:46:46 +0200
commitabc6924adf2c2b47f3043dedcc1dabafda946cad (patch)
tree3a07c2fc1e4c41686eda6f1560866bb5da359074 /pkgs/tools/misc/coreutils
parentbf6c88eba29055e384859ae551f88cedf5d26033 (diff)
downloadnixpkgs-abc6924adf2c2b47f3043dedcc1dabafda946cad.tar
nixpkgs-abc6924adf2c2b47f3043dedcc1dabafda946cad.tar.gz
nixpkgs-abc6924adf2c2b47f3043dedcc1dabafda946cad.tar.bz2
nixpkgs-abc6924adf2c2b47f3043dedcc1dabafda946cad.tar.lz
nixpkgs-abc6924adf2c2b47f3043dedcc1dabafda946cad.tar.xz
nixpkgs-abc6924adf2c2b47f3043dedcc1dabafda946cad.tar.zst
nixpkgs-abc6924adf2c2b47f3043dedcc1dabafda946cad.zip
coreutils: add -full postfix when not minimal
Diffstat (limited to 'pkgs/tools/misc/coreutils')
-rw-r--r--pkgs/tools/misc/coreutils/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/misc/coreutils/default.nix b/pkgs/tools/misc/coreutils/default.nix
index c4280fbd122..e6809b474ea 100644
--- a/pkgs/tools/misc/coreutils/default.nix
+++ b/pkgs/tools/misc/coreutils/default.nix
@@ -21,11 +21,11 @@ assert selinuxSupport -> libselinux != null && libsepol != null;
 with lib;
 
 stdenv.mkDerivation (rec {
-  pname = "coreutils";
+  pname = "coreutils${optionalString (!minimal) "-full"}";
   version = "9.0";
 
   src = fetchurl {
-    url = "mirror://gnu/${pname}/${pname}-${version}.tar.xz";
+    url = "mirror://gnu/coreutils/coreutils-${version}.tar.xz";
     sha256 = "sha256-zjCs30pBvFuzDdlV6eqnX6IWtOPesIiJ7TJDPHs7l84=";
   };