about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorgnidorah <gnidorah@users.noreply.github.com>2019-08-13 19:48:00 +0300
committerBjørn Forsman <bjorn.forsman@gmail.com>2019-08-19 08:04:51 +0200
commitbe820b8761d04e0ebf16d9bc9a93672b3b1be03d (patch)
tree229a35a195fc233c69a6c5882ba4ebccd998ecea /pkgs
parent71a3c13d6b67b87942fcf25e41d4bc5888af07a8 (diff)
munt: use qt5's mkDerivation
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/audio/munt/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/audio/munt/default.nix b/pkgs/applications/audio/munt/default.nix
index 3d40e4c39f4d4..c9a1e9bea808a 100644
--- a/pkgs/applications/audio/munt/default.nix
+++ b/pkgs/applications/audio/munt/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchFromGitHub, cmake, qtbase, alsaLib, makeDesktopItem }:
+{ stdenv, mkDerivation, fetchFromGitHub, cmake, qtbase, alsaLib, makeDesktopItem }:
 
 let
   desktopItem = makeDesktopItem rec {
@@ -8,7 +8,7 @@ let
     genericName = "Munt synthesiser";
     categories = "Audio;AudioVideo;";
   };
-in stdenv.mkDerivation rec {
+in mkDerivation rec {
   version = "2.3.0";
   pname = "munt";