summary refs log tree commit diff
path: root/pkgs/applications/networking/browsers/w3m
diff options
context:
space:
mode:
authorAlexey Shmalko <rasen.dubi@gmail.com>2017-01-21 15:02:02 +0200
committerAlexey Shmalko <rasen.dubi@gmail.com>2017-01-21 15:02:02 +0200
commit09b3df542d2cac5b444e6077d9486fb2e944a6f7 (patch)
treec825acfc720c31fa3e3c0383f0c5127481914b86 /pkgs/applications/networking/browsers/w3m
parent72a002f9d617caa26617570cf00afe0ce748cb4b (diff)
downloadnixpkgs-09b3df542d2cac5b444e6077d9486fb2e944a6f7.tar
nixpkgs-09b3df542d2cac5b444e6077d9486fb2e944a6f7.tar.gz
nixpkgs-09b3df542d2cac5b444e6077d9486fb2e944a6f7.tar.bz2
nixpkgs-09b3df542d2cac5b444e6077d9486fb2e944a6f7.tar.lz
nixpkgs-09b3df542d2cac5b444e6077d9486fb2e944a6f7.tar.xz
nixpkgs-09b3df542d2cac5b444e6077d9486fb2e944a6f7.tar.zst
nixpkgs-09b3df542d2cac5b444e6077d9486fb2e944a6f7.zip
w3m: fix package name
nix-repl> builtins.parseDrvName "w3m-v0.5.3+git20161120"
{ name = "w3m-v0.5.3+git20161120"; version = ""; }

nix-repl> builtins.parseDrvName "w3m-0.5.3+git20161120"
{ name = "w3m"; version = "0.5.3+git20161120"; }
Diffstat (limited to 'pkgs/applications/networking/browsers/w3m')
-rw-r--r--pkgs/applications/networking/browsers/w3m/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/networking/browsers/w3m/default.nix b/pkgs/applications/networking/browsers/w3m/default.nix
index f07668756ad..637041379db 100644
--- a/pkgs/applications/networking/browsers/w3m/default.nix
+++ b/pkgs/applications/networking/browsers/w3m/default.nix
@@ -15,7 +15,7 @@ assert mouseSupport -> gpm-ncurses != null;
 with stdenv.lib;
 
 stdenv.mkDerivation rec {
-  name = "w3m-v0.5.3+git20161120";
+  name = "w3m-0.5.3+git20161120";
 
   src = fetchFromGitHub {
     owner = "tats";