summaryrefslogtreecommitdiffstats
path: root/pkgs/development/compilers/gforth
diff options
context:
space:
mode:
authorHerwig Hochleitner <herwig@bendlas.net>2021-11-26 02:42:32 +0100
committerGitHub <noreply@github.com>2021-11-26 02:42:32 +0100
commit0e00c0b8f3c2f3eea9ef70daa2eaf02aac2fa464 (patch)
treee0dfe1340d428b160c2e8314f3da1b0b0787ef11 /pkgs/development/compilers/gforth
parent43cab046883d2869f57a440047cefd6ab945cb0a (diff)
gforth: replace name with pname
Co-authored-by: Ben Siraphob <bensiraphob@gmail.com>
Diffstat (limited to 'pkgs/development/compilers/gforth')
-rw-r--r--pkgs/development/compilers/gforth/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/compilers/gforth/default.nix b/pkgs/development/compilers/gforth/default.nix
index a36f8f4a2d38..9b59167d3139 100644
--- a/pkgs/development/compilers/gforth/default.nix
+++ b/pkgs/development/compilers/gforth/default.nix
@@ -14,7 +14,7 @@ let
bootForth = callPackage ./boot-forth.nix { };
in stdenv.mkDerivation {
- name = "gforth-${version}";
+ pname = "gforth";
inherit version;
src = fetchFromGitHub {
owner = "forthy42";