From 0e00c0b8f3c2f3eea9ef70daa2eaf02aac2fa464 Mon Sep 17 00:00:00 2001 From: Herwig Hochleitner Date: Fri, 26 Nov 2021 02:42:32 +0100 Subject: [PATCH] gforth: replace name with pname Co-authored-by: Ben Siraphob --- pkgs/development/compilers/gforth/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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";