notes: 2.2.0 -> 2.2.1

zendo 3047f013 e7f38be3

+3 -7
+3 -7
pkgs/applications/office/notes/default.nix
··· 10 10 11 11 stdenv.mkDerivation (finalAttrs: { 12 12 pname = "notes"; 13 - version = "2.2.0"; 13 + version = "2.2.1"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "nuttyartist"; 17 17 repo = "notes"; 18 18 rev = "v${finalAttrs.version}"; 19 - hash = "sha256-ZfAm77UHyjs2aYOYb+AhKViz6uteb7+KKSedonSiMkY="; 19 + hash = "sha256-ShChF87ysRoisKshY86kJTa3ZAiQhBOImuL8OsEqgBo="; 20 20 fetchSubmodules = true; 21 21 }; 22 22 ··· 34 34 Cocoa 35 35 ]; 36 36 37 - postInstall = lib.optionalString stdenv.isLinux '' 38 - # temporary fix: https://github.com/nuttyartist/notes/issues/613 39 - substituteInPlace $out/share/applications/io.github.nuttyartist.notes.desktop \ 40 - --replace 'Exec=notes' 'Exec=env QT_STYLE_OVERRIDE= notes' 41 - '' + lib.optionalString stdenv.isDarwin '' 37 + postInstall = lib.optionalString stdenv.isDarwin '' 42 38 mkdir $out/Applications 43 39 mv $out/bin/Notes.app $out/Applications 44 40 '';