summary refs log tree commit diff
path: root/pkgs/applications/office
diff options
context:
space:
mode:
authorTor Hedin Brønner <torhedinbronner@gmail.com>2020-03-19 15:43:32 +0100
committerJan Tojnar <jtojnar@gmail.com>2020-03-24 07:11:22 +0100
commit253d0907868b70ba40121c3af90f0f93696e11e4 (patch)
tree97bc5b3eedede89680697b61699be453506b417a /pkgs/applications/office
parent9b8b7657238116cbcaaa74f9c5540607917b1757 (diff)
downloadnixpkgs-253d0907868b70ba40121c3af90f0f93696e11e4.tar
nixpkgs-253d0907868b70ba40121c3af90f0f93696e11e4.tar.gz
nixpkgs-253d0907868b70ba40121c3af90f0f93696e11e4.tar.bz2
nixpkgs-253d0907868b70ba40121c3af90f0f93696e11e4.tar.lz
nixpkgs-253d0907868b70ba40121c3af90f0f93696e11e4.tar.xz
nixpkgs-253d0907868b70ba40121c3af90f0f93696e11e4.tar.zst
nixpkgs-253d0907868b70ba40121c3af90f0f93696e11e4.zip
notes-up: use older vala to fix build
Looks unresolved upstream:
https://github.com/Philip-Scott/Notes-up/issues/349
Diffstat (limited to 'pkgs/applications/office')
-rw-r--r--pkgs/applications/office/notes-up/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/applications/office/notes-up/default.nix b/pkgs/applications/office/notes-up/default.nix
index 1d2e581f3c9..055b3a41d09 100644
--- a/pkgs/applications/office/notes-up/default.nix
+++ b/pkgs/applications/office/notes-up/default.nix
@@ -2,7 +2,7 @@
 , fetchFromGitHub
 , pantheon
 , pkgconfig
-, vala
+, vala_0_46
 , cmake
 , ninja
 , gtk3
@@ -30,7 +30,8 @@ stdenv.mkDerivation rec {
   nativeBuildInputs = [
     cmake
     ninja
-    vala
+    # fails with newer vala: https://github.com/Philip-Scott/Notes-up/issues/349
+    vala_0_46
     pkgconfig
     wrapGAppsHook
   ];
@@ -59,7 +60,7 @@ stdenv.mkDerivation rec {
   meta = with stdenv.lib; {
     description = "Markdown notes editor and manager designed for elementary OS"
     + stdenv.lib.optionalString withPantheon " - built with Contractor support";
-    homepage = https://github.com/Philip-Scott/Notes-up;
+    homepage = "https://github.com/Philip-Scott/Notes-up";
     license = licenses.gpl2;
     maintainers = with maintainers; [ davidak worldofpeace ];
     platforms = platforms.linux;