summary refs log tree commit diff
diff options
context:
space:
mode:
authorworldofpeace <worldofpeace@users.noreply.github.com>2018-10-31 17:58:23 -0400
committerworldofpeace <worldofpeace@users.noreply.github.com>2018-10-31 18:49:40 -0400
commita9288f1d95b660d12f33fc51aac1ad7d29fb9915 (patch)
treeec8a20aee05b622a0076c7f5453867483c2e8d40
parent398282c1965bf45e192128ec06a244bbe36d7f78 (diff)
downloadnixpkgs-a9288f1d95b660d12f33fc51aac1ad7d29fb9915.tar
nixpkgs-a9288f1d95b660d12f33fc51aac1ad7d29fb9915.tar.gz
nixpkgs-a9288f1d95b660d12f33fc51aac1ad7d29fb9915.tar.bz2
nixpkgs-a9288f1d95b660d12f33fc51aac1ad7d29fb9915.tar.lz
nixpkgs-a9288f1d95b660d12f33fc51aac1ad7d29fb9915.tar.xz
nixpkgs-a9288f1d95b660d12f33fc51aac1ad7d29fb9915.tar.zst
nixpkgs-a9288f1d95b660d12f33fc51aac1ad7d29fb9915.zip
notejot: 1.4.5 -> 1.4.7
-rw-r--r--pkgs/applications/misc/notejot/default.nix13
1 files changed, 7 insertions, 6 deletions
diff --git a/pkgs/applications/misc/notejot/default.nix b/pkgs/applications/misc/notejot/default.nix
index 59ba45e6f37..09c49135ca1 100644
--- a/pkgs/applications/misc/notejot/default.nix
+++ b/pkgs/applications/misc/notejot/default.nix
@@ -1,9 +1,9 @@
-{ stdenv, fetchFromGitHub, vala, pkgconfig, meson, ninja, python3, granite
+{ stdenv, fetchFromGitHub, vala_0_40, pkgconfig, meson, ninja, python3, granite
 , gtk3, gnome3, gtksourceview, json-glib, gobjectIntrospection, wrapGAppsHook }:
 
 stdenv.mkDerivation rec {
   pname = "notejot";
-  version = "1.4.5";
+  version = "1.4.7";
 
   name = "${pname}-${version}";
 
@@ -20,11 +20,12 @@ stdenv.mkDerivation rec {
     ninja
     pkgconfig
     python3
-    vala
+    vala_0_40 # should be `elementary.vala` when elementary attribute set is merged
     wrapGAppsHook
   ];
 
   buildInputs = [
+    gnome3.defaultIconTheme # should be `elementary.defaultIconTheme`when elementary attribute set is merged
     gnome3.libgee
     granite
     gtk3
@@ -39,9 +40,9 @@ stdenv.mkDerivation rec {
 
   meta = with stdenv.lib; {
     description = "Stupidly-simple sticky notes applet";
-    homepage    = https://github.com/lainsce/notejot;
-    license     = licenses.gpl2Plus;
+    homepage = https://github.com/lainsce/notejot;
+    license = licenses.gpl2Plus;
     maintainers = with maintainers; [ worldofpeace ];
-    platforms   = platforms.linux;
+    platforms = platforms.linux;
   };
 }