dataexplorer: 3.9.0 -> 3.9.3 (#371970)
[NixPkgs.git] / pkgs / applications / terminal-emulators / rxvt-unicode-plugins / urxvt-theme-switch / default.nix
blobc356ee687e79dd085fe61a141cd076071663fd79
2   lib,
3   stdenv,
4   fetchFromGitHub,
5 }:
7 stdenv.mkDerivation rec {
8   pname = "urxvt-theme-switch";
9   version = "unstable-2014-12-21";
11   dontPatchShebangs = true;
13   src = fetchFromGitHub {
14     owner = "felixr";
15     repo = "urxvt-theme-switch";
16     rev = "cfcbcc3dd5a5b09a3fec0f6a1fea95f4a36a48c4";
17     sha256 = "0x27m1vdqprn3lqpwgxvffill7prmaj6j9rhgvkvi13mzl5wmlli";
18   };
20   installPhase = ''
21     mkdir -p $out/lib/urxvt/perl
22     sed -i -e "s|/usr/bin/env||" color-themes
23     cp color-themes $out/lib/urxvt/perl
24   '';
26   meta = with lib; {
27     description = "urxvt plugin that allows to switch color themes during runtime";
28     homepage = "https://github.com/felixr/urxvt-theme-switch";
29     license = "CCBYNC";
30     maintainers = [ ];
31     platforms = platforms.unix;
32   };