Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at netboot-syslinux-multiplatform 31 lines 775 B view raw
1{ lib, stdenv, fetchFromGitHub, autoconf, automake, pkg-config, 2 gtk-engine-murrine, gtk3 3}: 4 5stdenv.mkDerivation { 6 pname = "solarc-gtk-theme"; 7 version = "1.0.2"; 8 9 src = fetchFromGitHub { 10 owner = "schemar"; 11 repo = "solarc-theme"; 12 rev = "d1eb117325b8e5085ecaf78df2eb2413423fc643"; 13 sha256 = "005b66whyxba3403yzykpnlkz0q4m154pxpb4jzcny3fggy9r70s"; 14 }; 15 16 nativeBuildInputs = [ autoconf automake pkg-config gtk3 ]; 17 18 propagatedUserEnvPkgs = [ gtk-engine-murrine gtk3 ]; 19 20 buildPhase = '' 21 ./autogen.sh --prefix=$out 22 ''; 23 24 meta = with lib; { 25 description = "Solarized version of the Arc theme"; 26 homepage = "https://github.com/schemar/solarc-theme"; 27 license = licenses.gpl3; 28 maintainers = [ ]; 29 platforms = platforms.linux; 30 }; 31}