From 9f2f5d2c7ee6528afe9133bb6929ea2abeb5ac29 Mon Sep 17 00:00:00 2001 From: seth Date: Thu, 20 Apr 2023 20:04:30 -0400 Subject: chore: remove gradience this was upstreamed into nixpkgs --- pkgs/gradience.nix | 83 ------------------------------------------------------ 1 file changed, 83 deletions(-) delete mode 100644 pkgs/gradience.nix (limited to 'pkgs/gradience.nix') diff --git a/pkgs/gradience.nix b/pkgs/gradience.nix deleted file mode 100644 index 0ea72da..0000000 --- a/pkgs/gradience.nix +++ /dev/null @@ -1,83 +0,0 @@ -{ - lib, - fetchFromGitHub, - python3Packages, - wrapGAppsHook, - blueprint-compiler, - desktop-file-utils, - gobject-introspection, - libadwaita, - libsoup_3, - libportal-gtk4, - meson, - ninja, - pkg-config, - material-color-utilities, - sassc, -}: let - pythonDeps = with python3Packages; [ - pygobject3 - anyascii - cssutils - jinja2 - lxml - material-color-utilities - pillow - pluggy - regex - svglib - Yapsy - ]; -in - python3Packages.buildPythonApplication rec { - pname = "gradience"; - version = "0.4.1"; - format = "other"; - - src = fetchFromGitHub { - owner = "GradienceTeam"; - repo = "Gradience"; - rev = version; - sha256 = "sha256-xR3wPU0ax9U4995GckC8UGJqrUErd+jS5z3D/jWCdXQ="; - }; - - nativeBuildInputs = - [ - meson - ninja - blueprint-compiler - desktop-file-utils - gobject-introspection - libsoup_3 - pkg-config - sassc - wrapGAppsHook - ] - ++ pythonDeps; - - buildInputs = [ - libadwaita - libportal-gtk4 - libsoup_3 - ]; - - pythonPath = pythonDeps; - - dontWrapGApps = true; - - preFixup = '' - makeWrapperArgs+=("''${gappsWrapperArgs[@]}") - ''; - - postFixup = '' - wrapPythonProgramsIn "$out/bin" "$out/lib $pythonPath" - ''; - - meta = with lib; { - description = "A tool for customizing Libadwaita applications and the adw-gtk3 theme."; - homepage = "https://gradienceteam.github.io/"; - license = licenses.gpl3; - maintainers = with maintainers; [getchoo]; - platforms = platforms.linux; - }; - } -- cgit v1.2.3