summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorworldofpeace <worldofpeace@protonmail.ch>2019-12-04 23:29:12 -0500
committerworldofpeace <worldofpeace@protonmail.ch>2019-12-04 23:29:12 -0500
commit328b649e11cb930981588a0e42fc9057e5ca04f7 (patch)
tree51560d57c28d1363a8679535891cdd99159c7537 /pkgs/applications
parenta05f04fd145d01b21db3ac8b020fe8de46997b56 (diff)
downloadnixpkgs-328b649e11cb930981588a0e42fc9057e5ca04f7.tar
nixpkgs-328b649e11cb930981588a0e42fc9057e5ca04f7.tar.gz
nixpkgs-328b649e11cb930981588a0e42fc9057e5ca04f7.tar.bz2
nixpkgs-328b649e11cb930981588a0e42fc9057e5ca04f7.tar.lz
nixpkgs-328b649e11cb930981588a0e42fc9057e5ca04f7.tar.xz
nixpkgs-328b649e11cb930981588a0e42fc9057e5ca04f7.tar.zst
nixpkgs-328b649e11cb930981588a0e42fc9057e5ca04f7.zip
xdgmenumaker: don't use custom installPhase
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/misc/xdgmenumaker/default.nix12
1 files changed, 8 insertions, 4 deletions
diff --git a/pkgs/applications/misc/xdgmenumaker/default.nix b/pkgs/applications/misc/xdgmenumaker/default.nix
index bd767b6c131..56168b34859 100644
--- a/pkgs/applications/misc/xdgmenumaker/default.nix
+++ b/pkgs/applications/misc/xdgmenumaker/default.nix
@@ -30,10 +30,14 @@ python3Packages.buildPythonApplication rec {
     pygobject3
   ];
 
-  installPhase = ''
-    make install PREFIX=$out DESTDIR=
-  '';
-  
+  makeFlags = [
+    "PREFIX=${placeholder "out"}"
+  ];
+
+  installFlags = [
+    "DESTDIR="
+  ];
+
   meta = with stdenv.lib; {
     description = "Command line tool that generates XDG menus for several window managers";
     homepage = https://github.com/gapan/xdgmenumaker;