summary refs log tree commit diff
path: root/pkgs/applications/science/misc
diff options
context:
space:
mode:
authorPatrick Hilhorst <git@hilhorst.be>2018-11-05 00:35:13 +0100
committerPatrick Hilhorst <git@hilhorst.be>2018-11-06 00:06:21 +0100
commit9ec40cc3bfd5915f1625ca741fb3fd2be7ea30c1 (patch)
tree39270186f7b4d2138787d08655dcbde6a46bdc91 /pkgs/applications/science/misc
parentb0e9fc131ca777b24b97e21154ff66bb4f312eb6 (diff)
downloadnixpkgs-9ec40cc3bfd5915f1625ca741fb3fd2be7ea30c1.tar
nixpkgs-9ec40cc3bfd5915f1625ca741fb3fd2be7ea30c1.tar.gz
nixpkgs-9ec40cc3bfd5915f1625ca741fb3fd2be7ea30c1.tar.bz2
nixpkgs-9ec40cc3bfd5915f1625ca741fb3fd2be7ea30c1.tar.lz
nixpkgs-9ec40cc3bfd5915f1625ca741fb3fd2be7ea30c1.tar.xz
nixpkgs-9ec40cc3bfd5915f1625ca741fb3fd2be7ea30c1.tar.zst
nixpkgs-9ec40cc3bfd5915f1625ca741fb3fd2be7ea30c1.zip
treewide: Fix overrides having wrong versions
Diffstat (limited to 'pkgs/applications/science/misc')
-rw-r--r--pkgs/applications/science/misc/sasview/xhtml2pdf.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/applications/science/misc/sasview/xhtml2pdf.nix b/pkgs/applications/science/misc/sasview/xhtml2pdf.nix
index 0b3d438843d..8eff2057928 100644
--- a/pkgs/applications/science/misc/sasview/xhtml2pdf.nix
+++ b/pkgs/applications/science/misc/sasview/xhtml2pdf.nix
@@ -3,6 +3,7 @@
 let
   #xhtml2pdf specifically requires version "1.0b10" of html5lib
   html5 = html5lib.overrideAttrs( oldAttrs: rec{
+    name = "${oldAttrs.pname}-${version}";
     version = "1.0b10";
     src = oldAttrs.src.override {
       inherit version;