summary refs log tree commit diff
diff options
context:
space:
mode:
authorBobby Rong <rjl931189261@126.com>2022-02-13 11:28:32 +0800
committerGitHub <noreply@github.com>2022-02-13 11:28:32 +0800
commite1bff827c23418dec475aa44964c42db7d1cf35c (patch)
treeb5a7be3729f2b18553931d5d02eee44950ec8ea6
parentea90d784819ec79ebf80fbe9c694771a287e5737 (diff)
downloadnixpkgs-e1bff827c23418dec475aa44964c42db7d1cf35c.tar
nixpkgs-e1bff827c23418dec475aa44964c42db7d1cf35c.tar.gz
nixpkgs-e1bff827c23418dec475aa44964c42db7d1cf35c.tar.bz2
nixpkgs-e1bff827c23418dec475aa44964c42db7d1cf35c.tar.lz
nixpkgs-e1bff827c23418dec475aa44964c42db7d1cf35c.tar.xz
nixpkgs-e1bff827c23418dec475aa44964c42db7d1cf35c.tar.zst
nixpkgs-e1bff827c23418dec475aa44964c42db7d1cf35c.zip
notejot: drop needed comment, remove teams.pantheon.members from maintainers (#159716)
-rw-r--r--pkgs/applications/misc/notejot/default.nix20
1 files changed, 4 insertions, 16 deletions
diff --git a/pkgs/applications/misc/notejot/default.nix b/pkgs/applications/misc/notejot/default.nix
index f2f0c7393aa..deda8b07f47 100644
--- a/pkgs/applications/misc/notejot/default.nix
+++ b/pkgs/applications/misc/notejot/default.nix
@@ -17,24 +17,12 @@
 
 stdenv.mkDerivation rec {
   pname = "notejot";
-  version = "3.4.9"; # make sure to recheck src.rev
+  version = "3.4.9";
 
   src = fetchFromGitHub {
     owner = "lainsce";
     repo = pname;
-    # Note from Fedora spec file:
-    # https://src.fedoraproject.org/rpms/notejot/blob/bbe621cef4d5a2c27eed029063b8e8cfd7c8d400/f/notejot.spec
-    # Upstream confusingly made several bugfix post-releases of version 3.4.9,
-    # tagged as 3.4.x, but with prominent notices like "This is still 3.4.9". We
-    # respect upstream’s wishes (and the version numbers inside the source tarball)
-    # by packaging these releases as 3.4.9 with appropriate snapshot info.
-    # https://github.com/lainsce/notejot/releases/tag/3.4.9
-    #
-    # Note that sometimes upstream don't update their version in meson.build
-    # (https://github.com/lainsce/notejot/issues/236), always follow the version
-    # from Fedora Rawhide.
-    # https://github.com/lainsce/notejot/blob/3.4.9/meson.build#L1
-    rev = "3.4.9";
+    rev = version;
     hash = "sha256-42k9CAnXAb7Ic580SIa95MDCkCWtso1F+0eD69HX8WI=";
   };
 
@@ -66,9 +54,9 @@ stdenv.mkDerivation rec {
 
   meta = with lib; {
     homepage = "https://github.com/lainsce/notejot";
-    description = "Stupidly-simple sticky notes applet";
+    description = "Stupidly-simple notes app";
     license = licenses.gpl3Plus;
-    maintainers = with maintainers; [ AndersonTorres ] ++ teams.pantheon.members;
+    maintainers = with maintainers; [ AndersonTorres ];
     platforms = platforms.linux;
     mainProgram = "io.github.lainsce.Notejot";
   };