about summary refs log tree commit diff
path: root/pkgs/applications/graphics
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2024-03-11 12:09:54 +0100
committerGitHub <noreply@github.com>2024-03-11 12:09:54 +0100
commit07970054294f84ff36d925275210e0fbaf060376 (patch)
tree7f710e91eba35594ac5b0c3f693f418b6922948b /pkgs/applications/graphics
parent1cd15abf75a2e444506b3114937f62793f64011b (diff)
parent4d3910b48038067a9a3c9c8586b83de325680089 (diff)
Merge pull request #275111 from 2xsaiko/outgoing/gnustep
gnustep: replace custom builder with hooks
Diffstat (limited to 'pkgs/applications/graphics')
-rw-r--r--pkgs/applications/graphics/pikopixel/default.nix8
1 files changed, 7 insertions, 1 deletions
diff --git a/pkgs/applications/graphics/pikopixel/default.nix b/pkgs/applications/graphics/pikopixel/default.nix
index 816d9af62aa36..f8719cc0a4cd2 100644
--- a/pkgs/applications/graphics/pikopixel/default.nix
+++ b/pkgs/applications/graphics/pikopixel/default.nix
@@ -1,9 +1,10 @@
 { lib
+, clangStdenv
 , fetchurl
 , gnustep
 }:
 
-gnustep.gsmakeDerivation rec {
+clangStdenv.mkDerivation rec {
   pname = "pikopixel";
   version = "1.0-b10";
 
@@ -14,6 +15,11 @@ gnustep.gsmakeDerivation rec {
 
   sourceRoot = "PikoPixel.Sources.${version}/PikoPixel";
 
+  nativeBuildInputs = [
+    gnustep.make
+    gnustep.wrapGNUstepAppsHook
+  ];
+
   buildInputs = [
     gnustep.base
     gnustep.gui