summary refs log tree commit diff
path: root/pkgs/data/themes/orion/default.nix
blob: 9ba8cd368cf79f64ba95976eafdb321dcb376940 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ stdenv, fetchgit, gtk-engine-murrine }:

stdenv.mkDerivation {
  name = "orion-1.5";

  src = fetchgit {
    url = "https://github.com/shimmerproject/Orion.git";
    rev = "refs/tags/v1.5";
    sha256 = "1116yawv3fspkiq1ykk2wj0gza3l04b5nhldy0bayzjaj0y6fd89";
  };

  propagatedUserEnvPkgs = [ gtk-engine-murrine ];

  installPhase = ''
    mkdir -p $out/share/themes/orion
    cp -r gtk-2.0 gtk-3.0 metacity-1 openbox-3 xfwm4 $out/share/themes/orion
  '';

  meta = {
    homepage = https://github.com/shimmerproject/Orion;
    license = stdenv.lib.licenses.gpl3Plus;
    platforms = stdenv.lib.platforms.linux;
  };
}