Skip to content

Commit

Permalink
fixing more sneaky eval failures
Browse files Browse the repository at this point in the history
Signed-off-by: lucasew <[email protected]>
  • Loading branch information
lucasew committed Jan 7, 2025
1 parent 32389c9 commit 9035276
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions pkgs/applications/misc/plover/default.nix
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
{ lib, fetchFromGitHub, python3Packages, wmctrl, qtbase, mkDerivationWith }:
{ lib, fetchFromGitHub, python3Packages, wmctrl, qtbase, stdenv, mkDerivationWith }:

{
stable = throw "plover.stable was removed because it used Python 2. Use plover.dev instead."; # added 2022-06-05

dev = with python3Packages; mkDerivationWith buildPythonPackage rec {
dev = mkDerivationWith python3Packages.buildPythonPackage rec {
pname = "plover";
version = "4.0.0.dev10";

meta = {
broken = stdenv.hostPlatform.isDarwin;
description = "OpenSteno Plover stenography software";
maintainers = with lib.maintainers; [ twey kovirobi ];
license = licenses.gpl2;
license = lib.licenses.gpl2;
};

src = fetchFromGitHub {
Expand All @@ -25,8 +25,8 @@
# sed on many of the platforms Plover builds for
postPatch = "sed -i /PyQt5/d setup.cfg";

nativeCheckInputs = [ pytest mock ];
propagatedBuildInputs = [ babel pyqt5 xlib pyserial appdirs wcwidth setuptools ];
nativeCheckInputs = with python3Packages; [ pytest mock ];
propagatedBuildInputs = with python3Packages; [ babel pyqt5 xlib pyserial appdirs wcwidth setuptools ];

dontWrapQtApps = true;

Expand Down
2 changes: 1 addition & 1 deletion pkgs/by-name/xd/xdgmenumaker/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ python3Packages.buildPythonApplication rec {
homepage = "https://github.com/gapan/xdgmenumaker";
license = lib.licenses.gpl3Plus;
# NOTE: exclude darwin from platforms because Travis reports hash mismatch
platforms = with lib.platforms; filter (x: !(elem x darwin)) unix;
platforms = lib.filter (x: !(lib.elem x lib.platforms.darwin)) lib.platforms.unix;
maintainers = [ lib.maintainers.romildo ];
};
}
6 changes: 3 additions & 3 deletions pkgs/servers/openafs/1.8/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -155,9 +155,9 @@ stdenv.mkDerivation {
homepage = "https://www.openafs.org";
license = lib.licenses.ipl10;
platforms = lib.platforms.linux;
maintainers = [
maintainers.maggesi
maintainers.spacefrogg
maintainers = with lib.maintainers; [
maggesi
spacefrogg
];
};
}

0 comments on commit 9035276

Please sign in to comment.