Commit ff94f242 authored by flurie's avatar flurie
Browse files

ausweiskopie: fix on darwin

parent c6fee018
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -5,7 +5,6 @@
  python3Packages,
  makeDesktopItem,
  copyDesktopItems,
  desktopToDarwinBundle,
  enableModern ? true,
}:

@@ -21,10 +20,9 @@ python3Packages.buildPythonApplication rec {
    hash = "sha256-axy/cI5n2uvMKZ2Fkb0seFMRBKv6rpU01kgKSiQ10jE=";
  };

  nativeBuildInputs = [
  nativeBuildInputs = lib.optionals stdenv.hostPlatform.isLinux [
    copyDesktopItems
  ]
  ++ lib.optional stdenv.hostPlatform.isDarwin desktopToDarwinBundle;
  ];

  build-system = with python3Packages; [
    setuptools