Skip to content

Commit

Permalink
Merge pull request #272321 from arthsmn/notejot-fix
Browse files Browse the repository at this point in the history
notejot: fix build with newer vala
  • Loading branch information
pbsds authored Dec 6, 2023
2 parents 86dee28 + fe2ff1d commit e2de87d
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions pkgs/applications/misc/notejot/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
, pkg-config
, vala
, wrapGAppsHook4
, fetchpatch
}:

stdenv.mkDerivation rec {
Expand Down Expand Up @@ -41,6 +42,15 @@ stdenv.mkDerivation rec {
libgee
];


patches = [
# Fixes the compilation error with new Vala compiler. Remove in the next version.
(fetchpatch {
url = "https://github.com/musicinmybrain/notejot/commit/c6a7cfcb792de63fb51eb174f9f3d4e02f6a2ce1.patch";
hash = "sha256-dexPKIpUaAu/p0K2WQpElhPNt86CS+jD0dPL5+CTl4I=";
})
];

passthru.updateScript = nix-update-script { };

meta = with lib; {
Expand Down

0 comments on commit e2de87d

Please sign in to comment.