forked from mirrors/nixpkgs
sticky: fix updateScript
This commit is contained in:
parent
d7a0533878
commit
80c40aaa91
|
@ -7,6 +7,7 @@
|
|||
, gspell
|
||||
, gtk3
|
||||
, gobject-introspection
|
||||
, gitUpdater
|
||||
}:
|
||||
|
||||
python3.pkgs.buildPythonApplication rec {
|
||||
|
@ -73,6 +74,13 @@ python3.pkgs.buildPythonApplication rec {
|
|||
makeWrapperArgs+=("''${gappsWrapperArgs[@]}")
|
||||
'';
|
||||
|
||||
passthru = {
|
||||
updateScript = gitUpdater {
|
||||
inherit pname version;
|
||||
ignoredVersions = ''master.*'';
|
||||
};
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
description = "A sticky notes app for the linux desktop";
|
||||
homepage = "https://github.com/linuxmint/sticky";
|
||||
|
|
Loading…
Reference in a new issue