about summary refs log tree commit diff
path: root/pkgs/applications/graphics
diff options
context:
space:
mode:
authorFelix Bühler <Stunkymonkey@users.noreply.github.com>2021-12-24 00:55:24 +0100
committerGitHub <noreply@github.com>2021-12-24 00:55:24 +0100
commite0f8595b154710605980c3c77b59640d9cfcc360 (patch)
treea935285f7e43ed7ef6ba06f808cb184081a616d7 /pkgs/applications/graphics
parente998439b18cb2b3f495e8e58ebf9b0d60a4fc492 (diff)
parent81eb599e8d662940f451aee1f6fcb3af24c1b655 (diff)
Merge pull request #145090 from Stunkymonkey/buildDotnetPackage-pname
buildDotnetPackage/fetchNuGet: use `pname` instead of `name` and `baseName`
Diffstat (limited to 'pkgs/applications/graphics')
-rw-r--r--pkgs/applications/graphics/pinta/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/graphics/pinta/default.nix b/pkgs/applications/graphics/pinta/default.nix
index c2704cbf265b6..6859a07b48a6d 100644
--- a/pkgs/applications/graphics/pinta/default.nix
+++ b/pkgs/applications/graphics/pinta/default.nix
@@ -10,7 +10,7 @@ let
   mono-addins = dotnetPackages.MonoAddins;
 in
 buildDotnetPackage rec {
-  baseName = "Pinta";
+  pname = "Pinta";
   version = "1.7.1";
 
   outputFiles = [ "bin/*" ];