Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 9d6f01aeefe3
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 0439412ebab3
Choose a head ref
  • 2 commits
  • 2 files changed
  • 1 contributor

Commits on Jul 5, 2020

  1. marwaita: init at 2020-07-01

    romildo committed Jul 5, 2020

    Verified

    This commit was signed with the committer’s verified signature.
    samsonasik Abdul Malik Ikhsan
    Copy the full SHA
    3b337cf View commit details

Commits on Jul 9, 2020

  1. Merge pull request #92336 from romildo/upd.marwaita

    marwaita: init at 2020-07-01
    romildo authored Jul 9, 2020

    Verified

    This commit was signed with the committer’s verified signature.
    samsonasik Abdul Malik Ikhsan
    Copy the full SHA
    0439412 View commit details
Showing with 49 additions and 0 deletions.
  1. +47 −0 pkgs/data/themes/marwaita/default.nix
  2. +2 −0 pkgs/top-level/all-packages.nix
47 changes: 47 additions & 0 deletions pkgs/data/themes/marwaita/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
{ stdenv
, fetchFromGitHub
, gdk-pixbuf
, gtk-engine-murrine
, gtk_engines
, librsvg
}:

stdenv.mkDerivation rec {
pname = "marwaita";
version = "2020-07-01";

src = fetchFromGitHub {
owner = "darkomarko42";
repo = pname;
rev = "310a3e596e95005752e14e2b96f55966cbb59d67";
sha256 = "1r0jqv3hh74965dgc7qwvvhwzf548gb27z69lbpwz060k9di6zwj";
};

buildInputs = [
gdk-pixbuf
gtk_engines
librsvg
];

propagatedUserEnvPkgs = [
gtk-engine-murrine
];

dontBuild = true;

installPhase = ''
runHook preInstall
mkdir -p $out/share/themes
cp -a Marwaita* $out/share/themes
rm $out/share/themes/*/COPYING
runHook postInstall
'';

meta = with stdenv.lib; {
description = "GTK theme supporting Budgie, Pantheon, Mate and Xfce4 desktops";
homepage = "https://www.pling.com/p/1239855/";
license = licenses.cc0;
platforms = platforms.unix;
maintainers = [ maintainers.romildo ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -18391,6 +18391,8 @@ in

manrope = callPackage ../data/fonts/manrope { };

marwaita = callPackage ../data/themes/marwaita { };

matcha-gtk-theme = callPackage ../data/themes/matcha { };

materia-theme = callPackage ../data/themes/materia-theme { };