about summary refs log tree commit diff
path: root/pkgs/applications/science/geometry
diff options
context:
space:
mode:
authorFelix Buehler <account@buehler.rocks>2021-11-07 14:50:48 +0100
committerFelix Buehler <account@buehler.rocks>2021-11-07 14:53:06 +0100
commitb52ab3b712cc44b5eb88557ad2ca206dcd10af20 (patch)
tree150c6952f4b9cf2d164b7b424c9d1709b4a0cc6e /pkgs/applications/science/geometry
parent54ef803bf82fa441de6d154086325137ff732028 (diff)
pkgs/applications: rename name to pname&version part 2
Diffstat (limited to 'pkgs/applications/science/geometry')
-rw-r--r--pkgs/applications/science/geometry/tetgen/1.4.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/applications/science/geometry/tetgen/1.4.nix b/pkgs/applications/science/geometry/tetgen/1.4.nix
index 245d4c12bfe07..684f5913f79fe 100644
--- a/pkgs/applications/science/geometry/tetgen/1.4.nix
+++ b/pkgs/applications/science/geometry/tetgen/1.4.nix
@@ -1,10 +1,11 @@
-{lib, stdenv, fetchurl}:
+{ lib, stdenv, fetchurl }:
 
 stdenv.mkDerivation rec {
-  name = "tetgen-1.4.3";
+  pname = "tetgen";
+  version = "1.4.3";
 
   src = fetchurl {
-    url = "${meta.homepage}/files/tetgen1.4.3.tar.gz";
+    url = "${meta.homepage}/files/tetgen${version}.tar.gz";
     sha256 = "0d70vjqdapmy1ghlsxjlvl5z9yp310zw697bapc4zxmp0sxi29wm";
   };