summary refs log tree commit diff
diff options
context:
space:
mode:
authorEmily Trau <emily@downunderctf.com>2023-10-10 19:50:29 -0700
committerAnderson Torres <torres.anderson.85@protonmail.com>2023-10-19 17:53:56 -0300
commitd2c4f9a4fcf7fc7a4123719befc8c61aac8d3fa3 (patch)
treeda195097c3a55550cfa084e62a349675be8aa021
parent3179f5b77082c42fc1a75e9c71f21a6979614731 (diff)
downloadnixpkgs-d2c4f9a4fcf7fc7a4123719befc8c61aac8d3fa3.tar
nixpkgs-d2c4f9a4fcf7fc7a4123719befc8c61aac8d3fa3.tar.gz
nixpkgs-d2c4f9a4fcf7fc7a4123719befc8c61aac8d3fa3.tar.bz2
nixpkgs-d2c4f9a4fcf7fc7a4123719befc8c61aac8d3fa3.tar.lz
nixpkgs-d2c4f9a4fcf7fc7a4123719befc8c61aac8d3fa3.tar.xz
nixpkgs-d2c4f9a4fcf7fc7a4123719befc8c61aac8d3fa3.tar.zst
nixpkgs-d2c4f9a4fcf7fc7a4123719befc8c61aac8d3fa3.zip
minimal-bootstrap.coreutils-musl: change pname to not break `nix-env`
-rw-r--r--pkgs/os-specific/linux/minimal-bootstrap/coreutils/default.nix2
-rw-r--r--pkgs/os-specific/linux/minimal-bootstrap/coreutils/musl.nix2
2 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/os-specific/linux/minimal-bootstrap/coreutils/default.nix b/pkgs/os-specific/linux/minimal-bootstrap/coreutils/default.nix
index eb4fe9bcf99..9d7480d239f 100644
--- a/pkgs/os-specific/linux/minimal-bootstrap/coreutils/default.nix
+++ b/pkgs/os-specific/linux/minimal-bootstrap/coreutils/default.nix
@@ -6,7 +6,7 @@
 , gnupatch
 }:
 let
-  pname = "coreutils";
+  pname = "bootstrap-coreutils";
   version = "5.0";
 
   src = fetchurl {
diff --git a/pkgs/os-specific/linux/minimal-bootstrap/coreutils/musl.nix b/pkgs/os-specific/linux/minimal-bootstrap/coreutils/musl.nix
index dece020a5e7..14584e0a7e6 100644
--- a/pkgs/os-specific/linux/minimal-bootstrap/coreutils/musl.nix
+++ b/pkgs/os-specific/linux/minimal-bootstrap/coreutils/musl.nix
@@ -12,7 +12,7 @@
 , gzip
 }:
 let
-  pname = "coreutils";
+  pname = "bootstrap-coreutils-musl";
   version = "9.4";
 
   src = fetchurl {