mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-18 03:34:58 +00:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
88 lines
1.6 KiB
Nix
88 lines
1.6 KiB
Nix
{ stdenv
|
|
, lib
|
|
, fetchFromGitHub
|
|
, gobject-introspection
|
|
, meson
|
|
, ninja
|
|
, python3
|
|
, wrapGAppsHook
|
|
, cinnamon
|
|
, glib
|
|
, gspell
|
|
, gtk3
|
|
, gitUpdater
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "sticky";
|
|
version = "1.19";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "linuxmint";
|
|
repo = pname;
|
|
rev = version;
|
|
hash = "sha256-nvnft62vZ9ivijYnQGULW7ff2aAVJiIx9xq09My2NxE=";
|
|
};
|
|
|
|
postPatch = ''
|
|
sed -i -e "s|/usr/bin|$out/bin|" data/org.x.sticky.service
|
|
sed -i -e "s|/usr/lib|$out/lib|" usr/bin/sticky
|
|
sed -i -e "s|/usr/share|$out/share|" usr/lib/sticky/*.py
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
gobject-introspection
|
|
meson
|
|
ninja
|
|
python3.pkgs.wrapPython
|
|
wrapGAppsHook
|
|
];
|
|
|
|
buildInputs = [
|
|
cinnamon.xapp
|
|
glib
|
|
gspell
|
|
gtk3
|
|
python3 # for patchShebangs
|
|
];
|
|
|
|
pythonPath = with python3.pkgs; [
|
|
pygobject3
|
|
xapp
|
|
];
|
|
|
|
postInstall = ''
|
|
# https://github.com/linuxmint/sticky/pull/118
|
|
cp -r ../etc $out
|
|
cp -r ../usr/* $out
|
|
|
|
glib-compile-schemas $out/share/glib-2.0/schemas
|
|
'';
|
|
|
|
dontWrapGApps = true;
|
|
|
|
preFixup = ''
|
|
buildPythonPath "$out $pythonPath"
|
|
|
|
chmod +x $out/bin/sticky
|
|
wrapProgram $out/bin/sticky \
|
|
--prefix PYTHONPATH : "$program_PYTHONPATH" \
|
|
''${gappsWrapperArgs[@]}
|
|
'';
|
|
|
|
passthru = {
|
|
updateScript = gitUpdater {
|
|
ignoredVersions = ''master.*'';
|
|
};
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "A sticky notes app for the linux desktop";
|
|
mainProgram = "sticky";
|
|
homepage = "https://github.com/linuxmint/sticky";
|
|
license = licenses.gpl2Only;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ linsui bobby285271 ];
|
|
};
|
|
}
|