summary refs log tree commit diff
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2016-01-10 14:56:17 +0100
committerVladimír Čunát <vcunat@gmail.com>2016-01-15 08:36:22 +0100
commit2e78e19de0da98b6ccf099eff82a2f19fe567d1a (patch)
tree91a950fa4b6ab0b16212f2d13a63fd4158b37e33
parenta8f1d40c1f495ef3388b73992d2079c13471b729 (diff)
downloadnixpkgs-2e78e19de0da98b6ccf099eff82a2f19fe567d1a.tar
nixpkgs-2e78e19de0da98b6ccf099eff82a2f19fe567d1a.tar.gz
nixpkgs-2e78e19de0da98b6ccf099eff82a2f19fe567d1a.tar.bz2
nixpkgs-2e78e19de0da98b6ccf099eff82a2f19fe567d1a.tar.lz
nixpkgs-2e78e19de0da98b6ccf099eff82a2f19fe567d1a.tar.xz
nixpkgs-2e78e19de0da98b6ccf099eff82a2f19fe567d1a.tar.zst
nixpkgs-2e78e19de0da98b6ccf099eff82a2f19fe567d1a.zip
firefox: put "unwrapped" into its name
I'm not certain about this, so I'm trying for firefox only.
Rationale: it might be confusing to see two firefox-${version} instances
in logs or paths, so I wanted to differentiate them.
-rw-r--r--pkgs/applications/networking/browsers/firefox/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/networking/browsers/firefox/default.nix b/pkgs/applications/networking/browsers/firefox/default.nix
index 5062688fffe..846c79d0b74 100644
--- a/pkgs/applications/networking/browsers/firefox/default.nix
+++ b/pkgs/applications/networking/browsers/firefox/default.nix
@@ -19,7 +19,7 @@ assert stdenv.cc ? libc && stdenv.cc.libc != null;
 let
 
 common = { pname, version, sha256 }: stdenv.mkDerivation rec {
-  name = "${pname}-${version}";
+  name = "${pname}-unwrapped-${version}";
 
   src = fetchurl {
     url =