9 stdenv.mkDerivation rec {
10 pname = "adementary-theme";
13 src = fetchFromGitHub {
17 sha256 = "14y5s18g9r2c1ciw1skfksn09gvqgy8vjvwbr0z8gacf0jc2apqk";
21 # Shut up inkscape's warnings
22 export HOME="$NIX_BUILD_ROOT"
25 nativeBuildInputs = [ sassc ];
26 buildInputs = [ gtk3 ];
28 postPatch = "patchShebangs .";
31 mkdir -p $out/share/themes
32 ./install.sh -d $out/share/themes
36 description = "Adwaita-based GTK theme with design influence from elementary OS and Vertex GTK theme";
37 homepage = "https://github.com/hrdwrrsk/adementary-theme";
38 license = licenses.gpl3;
40 platforms = platforms.linux;