feat: move to tokyo tokyo night
this isn't fully complete but it will be soon still have river
This commit is contained in:
parent
b164cad6e2
commit
df2064b116
9 changed files with 86 additions and 192 deletions
|
@ -1,7 +1,15 @@
|
|||
{inputs, ...}: {
|
||||
flake.overlays.default = final: prev: {
|
||||
fairfax = final.callPackage ./derivations/fairfax.nix {};
|
||||
nicotine-plus = final.callPackage ./derivations/nicotine-plus.nix {};
|
||||
nicotine-plus = final.symlinkJoin {
|
||||
name = "nicotine";
|
||||
paths = [prev.nicotine-plus];
|
||||
nativeBuildInputs = [prev.makeWrapper];
|
||||
postBuild = ''
|
||||
wrapProgram $out/bin/nicotine \
|
||||
--set-default NICOTINE_LIBADWAITA 1
|
||||
'';
|
||||
};
|
||||
rose-pine-gtk-theme = prev.rose-pine-gtk-theme.overrideAttrs (prevAttrs: {
|
||||
version = "master";
|
||||
src = prev.fetchFromGitHub {
|
||||
|
|
|
@ -1,73 +0,0 @@
|
|||
{
|
||||
lib,
|
||||
fetchFromGitHub,
|
||||
wrapGAppsHook4,
|
||||
gdk-pixbuf,
|
||||
gettext,
|
||||
gobject-introspection,
|
||||
gtk4,
|
||||
glib,
|
||||
python3Packages,
|
||||
libadwaita,
|
||||
makeWrapper,
|
||||
}:
|
||||
python3Packages.buildPythonApplication rec {
|
||||
pname = "nicotine-plus";
|
||||
version = "3.3.6";
|
||||
pyproject = true;
|
||||
src = fetchFromGitHub {
|
||||
owner = "nicotine-plus";
|
||||
repo = "nicotine-plus";
|
||||
rev = "refs/tags/${version}";
|
||||
hash = "sha256-je3hyxbF9wKW2gvHoDp712EJxBxooS2z0pQM57WDdOk=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
gettext
|
||||
wrapGAppsHook4
|
||||
gobject-introspection
|
||||
glib
|
||||
gdk-pixbuf
|
||||
gtk4
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
libadwaita
|
||||
makeWrapper
|
||||
];
|
||||
|
||||
dependencies = [
|
||||
python3Packages.pygobject3
|
||||
];
|
||||
|
||||
build-system = [
|
||||
python3Packages.setuptools
|
||||
];
|
||||
|
||||
postInstall = ''
|
||||
wrapProgram $out/bin/nicotine \
|
||||
--set NICOTINE_LIBADWAITA 1
|
||||
ln -s $out/bin/nicotine $out/bin/nicotine-plus
|
||||
'';
|
||||
|
||||
dontWrapGAppsHook = true;
|
||||
makeWrapperArgs = [
|
||||
"\${gappsWrapperArgs[@]}"
|
||||
];
|
||||
|
||||
doCheck = false;
|
||||
meta = with lib; {
|
||||
description = "Graphical client for the SoulSeek peer-to-peer system";
|
||||
longDescription = ''
|
||||
Nicotine+ aims to be a pleasant, free and open source (FOSS) alternative
|
||||
to the official Soulseek client, providing additional functionality while
|
||||
keeping current with the Soulseek protocol.
|
||||
'';
|
||||
homepage = "https://www.nicotine-plus.org";
|
||||
license = licenses.gpl3Plus;
|
||||
maintainers = with maintainers; [
|
||||
klntsky
|
||||
amadaluzia
|
||||
];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue