notejot: drop needed comment, remove teams.pantheon.members from maintainers (#159716)

authored by Bobby Rong and committed by GitHub e1bff827 ea90d784

+4 -16
+4 -16
pkgs/applications/misc/notejot/default.nix
··· 17 18 stdenv.mkDerivation rec { 19 pname = "notejot"; 20 - version = "3.4.9"; # make sure to recheck src.rev 21 22 src = fetchFromGitHub { 23 owner = "lainsce"; 24 repo = pname; 25 - # Note from Fedora spec file: 26 - # https://src.fedoraproject.org/rpms/notejot/blob/bbe621cef4d5a2c27eed029063b8e8cfd7c8d400/f/notejot.spec 27 - # Upstream confusingly made several bugfix post-releases of version 3.4.9, 28 - # tagged as 3.4.x, but with prominent notices like "This is still 3.4.9". We 29 - # respect upstream’s wishes (and the version numbers inside the source tarball) 30 - # by packaging these releases as 3.4.9 with appropriate snapshot info. 31 - # https://github.com/lainsce/notejot/releases/tag/3.4.9 32 - # 33 - # Note that sometimes upstream don't update their version in meson.build 34 - # (https://github.com/lainsce/notejot/issues/236), always follow the version 35 - # from Fedora Rawhide. 36 - # https://github.com/lainsce/notejot/blob/3.4.9/meson.build#L1 37 - rev = "3.4.9"; 38 hash = "sha256-42k9CAnXAb7Ic580SIa95MDCkCWtso1F+0eD69HX8WI="; 39 }; 40 ··· 66 67 meta = with lib; { 68 homepage = "https://github.com/lainsce/notejot"; 69 - description = "Stupidly-simple sticky notes applet"; 70 license = licenses.gpl3Plus; 71 - maintainers = with maintainers; [ AndersonTorres ] ++ teams.pantheon.members; 72 platforms = platforms.linux; 73 mainProgram = "io.github.lainsce.Notejot"; 74 };
··· 17 18 stdenv.mkDerivation rec { 19 pname = "notejot"; 20 + version = "3.4.9"; 21 22 src = fetchFromGitHub { 23 owner = "lainsce"; 24 repo = pname; 25 + rev = version; 26 hash = "sha256-42k9CAnXAb7Ic580SIa95MDCkCWtso1F+0eD69HX8WI="; 27 }; 28 ··· 54 55 meta = with lib; { 56 homepage = "https://github.com/lainsce/notejot"; 57 + description = "Stupidly-simple notes app"; 58 license = licenses.gpl3Plus; 59 + maintainers = with maintainers; [ AndersonTorres ]; 60 platforms = platforms.linux; 61 mainProgram = "io.github.lainsce.Notejot"; 62 };