forked from mirrors/nixpkgs
sticky: init at 1.8
This commit is contained in:
parent
4ae74bbc94
commit
2b71239bb2
83
pkgs/applications/misc/sticky/default.nix
Normal file
83
pkgs/applications/misc/sticky/default.nix
Normal file
|
@ -0,0 +1,83 @@
|
|||
{ lib
|
||||
, python3
|
||||
, fetchFromGitHub
|
||||
, wrapGAppsHook
|
||||
, cinnamon
|
||||
, glib
|
||||
, gspell
|
||||
, gtk3
|
||||
, gobject-introspection
|
||||
}:
|
||||
|
||||
python3.pkgs.buildPythonApplication rec {
|
||||
pname = "sticky";
|
||||
version = "1.8";
|
||||
format = "other";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "linuxmint";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
hash = "sha256-VSD/QsG7G9hji5m6NSEkCoVM+XK3t4KmCqbocTbZwE4=";
|
||||
};
|
||||
|
||||
postPatch = ''
|
||||
sed -i -e "s|/usr/share|$out/share|" usr/lib/sticky/*.py
|
||||
'';
|
||||
|
||||
nativeBuildInputs = [
|
||||
gobject-introspection
|
||||
wrapGAppsHook
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
glib
|
||||
gobject-introspection
|
||||
cinnamon.xapps
|
||||
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[@]}")
|
||||
'';
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
|
@ -34464,6 +34464,8 @@ with pkgs;
|
|||
|
||||
sndio = callPackage ../misc/sndio { };
|
||||
|
||||
sticky = callPackage ../applications/misc/sticky { };
|
||||
|
||||
stork = callPackage ../applications/misc/stork { };
|
||||
|
||||
oclgrind = callPackage ../development/tools/analysis/oclgrind { };
|
||||
|
|
Loading…
Reference in a new issue