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: c9cd1356ea15
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: d1595144a464
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Mar 23, 2019

  1. Copy the full SHA
    4430e0a View commit details

Commits on Mar 26, 2019

  1. Merge pull request #56773 from bricewge/solarc

    solarc-gtk-theme: init at 1.0.2
    joachifm authored Mar 26, 2019
    Copy the full SHA
    d159514 View commit details
Showing with 33 additions and 0 deletions.
  1. +31 −0 pkgs/misc/themes/solarc/default.nix
  2. +2 −0 pkgs/top-level/all-packages.nix
31 changes: 31 additions & 0 deletions pkgs/misc/themes/solarc/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{ stdenv, fetchFromGitHub, autoconf, automake, pkgconfig,
gtk-engine-murrine, gtk3
}:

stdenv.mkDerivation rec {
name = "solarc-gtk-theme-${version}";
version = "1.0.2";

src = fetchFromGitHub {
owner = "schemar";
repo = "solarc-theme";
rev = "d1eb117325b8e5085ecaf78df2eb2413423fc643";
sha256 = "005b66whyxba3403yzykpnlkz0q4m154pxpb4jzcny3fggy9r70s";
};

nativeBuildInputs = [ autoconf automake pkgconfig gtk3 ];

propagatedUserEnvPkgs = [ gtk-engine-murrine gtk3 ];

buildPhase = ''
./autogen.sh --prefix=$out
'';

meta = with stdenv.lib; {
description = "Solarized version of the Arc theme";
homepage = https://github.com/schemar/solarc-theme;
license = licenses.gpl3;
maintainers = [ maintainers.bricewge ];
platforms = platforms.linux;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -21529,6 +21529,8 @@ in
gtk = gtk2;
};

solarc-gtk-theme = callPackage ../misc/themes/solarc { };

xfce = xfce4-12;
xfceUnstable = xfce4-13;