about summary refs log tree commit diff
path: root/pkgs/applications/science
diff options
context:
space:
mode:
authorBen Siraphob <bensiraphob@gmail.com>2022-03-24 22:55:34 -0500
committerGitHub <noreply@github.com>2022-03-24 22:55:34 -0500
commit1cf5591a99f9d1f0b4bff66f1533917f4c597112 (patch)
tree782e1b7783c83738883e57937f0d975645e9ceed /pkgs/applications/science
parentcee88c2a1f636a3eaf5a1a07ed8ee904b1e22116 (diff)
parente0476d93fe71dabae965f153724648df813c4fe0 (diff)
downloadnixlib-1cf5591a99f9d1f0b4bff66f1533917f4c597112.tar
nixlib-1cf5591a99f9d1f0b4bff66f1533917f4c597112.tar.gz
nixlib-1cf5591a99f9d1f0b4bff66f1533917f4c597112.tar.bz2
nixlib-1cf5591a99f9d1f0b4bff66f1533917f4c597112.tar.lz
nixlib-1cf5591a99f9d1f0b4bff66f1533917f4c597112.tar.xz
nixlib-1cf5591a99f9d1f0b4bff66f1533917f4c597112.tar.zst
nixlib-1cf5591a99f9d1f0b4bff66f1533917f4c597112.zip
Merge pull request #165303 from Stunkymonkey/treewide-pname-version-18
Diffstat (limited to 'pkgs/applications/science')
-rw-r--r--pkgs/applications/science/logic/why3/with-provers.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/science/logic/why3/with-provers.nix b/pkgs/applications/science/logic/why3/with-provers.nix
index 826473b38e9f..ae0acb1e525c 100644
--- a/pkgs/applications/science/logic/why3/with-provers.nix
+++ b/pkgs/applications/science/logic/why3/with-provers.nix
@@ -12,7 +12,7 @@ let configAwkScript = runCommand "why3-conf.awk" { inherit provers; }
   '';
 in
 stdenv.mkDerivation {
-  name = "${why3.name}-with-provers";
+  pname = "${why3.pname}-with-provers";
 
   nativeBuildInputs = [ makeWrapper ];
   buildInputs = [ why3 ] ++ provers;