4 , gobject-introspection
16 stdenv.mkDerivation rec {
20 src = fetchFromGitHub {
24 hash = "sha256-JrzBME1d4qvGjF2zdiqCX7h+sFadLsRQqZKnQj7elHs=";
28 sed -i -e "s|/usr/lib|$out/lib|" usr/bin/sticky
29 sed -i -e "s|/usr/share|$out/share|" usr/lib/sticky/*.py
36 python3.pkgs.wrapPython
45 python3 # for patchShebangs
48 pythonPath = with python3.pkgs; [
56 buildPythonPath "$out $pythonPath"
58 wrapProgram $out/bin/sticky \
59 --prefix PYTHONPATH : "$program_PYTHONPATH" \
60 ''${gappsWrapperArgs[@]}
64 updateScript = gitUpdater {
65 ignoredVersions = ''master.*'';
70 description = "Sticky notes app for the linux desktop";
71 mainProgram = "sticky";
72 homepage = "https://github.com/linuxmint/sticky";
73 license = licenses.gpl2Only;
74 platforms = platforms.linux;
75 maintainers = with maintainers; [ linsui bobby285271 ];