mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 20:21:14 +00:00
91 lines
1.8 KiB
Nix
91 lines
1.8 KiB
Nix
{ lib
|
|
, python3
|
|
, fetchFromGitHub
|
|
, wrapGAppsHook
|
|
, cinnamon
|
|
, glib
|
|
, gspell
|
|
, gtk3
|
|
, gobject-introspection
|
|
, gitUpdater
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "sticky";
|
|
version = "1.14";
|
|
format = "other";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "linuxmint";
|
|
repo = pname;
|
|
rev = version;
|
|
hash = "sha256-7UZbCbzQ1ZrSzxTUdbA+wsH3p27qj/c/cM4GY/kzG6E=";
|
|
};
|
|
|
|
postPatch = ''
|
|
sed -i -e "s|/usr/share|$out/share|" usr/lib/sticky/*.py
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
gobject-introspection
|
|
wrapGAppsHook
|
|
];
|
|
|
|
buildInputs = [
|
|
glib
|
|
gobject-introspection
|
|
cinnamon.xapp
|
|
gspell
|
|
];
|
|
|
|
propagatedBuildInputs = with python3.pkgs; [
|
|
pygobject3
|
|
xapp
|
|
];
|
|
|
|
postBuild = ''
|
|
glib-compile-schemas usr/share/glib-2.0/schemas
|
|
'';
|
|
|
|
# hook for gobject-introspection doesn't like strictDeps
|
|
# https://github.com/NixOS/nixpkgs/issues/56943
|
|
strictDeps = false;
|
|
|
|
# no tests
|
|
doCheck = false;
|
|
|
|
dontWrapGApps = true;
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p $out/bin
|
|
mv usr/lib $out
|
|
mv usr/share $out
|
|
patchShebangs $out/lib/sticky
|
|
mv $out/lib/sticky/sticky.py $out/bin/sticky
|
|
sed -i -e "1aimport sys;sys.path.append('$out/lib/sticky')" $out/bin/sticky
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
# Arguments to be passed to `makeWrapper`, only used by buildPython*
|
|
preFixup = ''
|
|
makeWrapperArgs+=("''${gappsWrapperArgs[@]}")
|
|
'';
|
|
|
|
passthru = {
|
|
updateScript = gitUpdater {
|
|
ignoredVersions = ''master.*'';
|
|
};
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "A sticky notes app for the linux desktop";
|
|
homepage = "https://github.com/linuxmint/sticky";
|
|
license = licenses.gpl2Only;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ linsui bobby285271 ];
|
|
};
|
|
}
|