anvil-editor: init at 0.4
[NixPkgs.git] / pkgs / applications / terminal-emulators / rxvt-unicode-plugins / urxvt-theme-switch / default.nix
blob2bfc9669338ad40e9319e6a87acf4f5a84bc8037
1 { lib, stdenv, fetchFromGitHub }:
3 stdenv.mkDerivation rec {
4   pname = "urxvt-theme-switch";
5   version = "unstable-2014-12-21";
7   dontPatchShebangs = true;
9   src = fetchFromGitHub {
10     owner = "felixr";
11     repo = "urxvt-theme-switch";
12     rev = "cfcbcc3dd5a5b09a3fec0f6a1fea95f4a36a48c4";
13     sha256 = "0x27m1vdqprn3lqpwgxvffill7prmaj6j9rhgvkvi13mzl5wmlli";
14   };
16   installPhase = ''
17     mkdir -p $out/lib/urxvt/perl
18     sed -i -e "s|/usr/bin/env||" color-themes
19     cp color-themes $out/lib/urxvt/perl
20   '';
22   meta = with lib; {
23     description = "urxvt plugin that allows to switch color themes during runtime";
24     homepage = "https://github.com/felixr/urxvt-theme-switch";
25     license = "CCBYNC";
26     maintainers = [ ];
27     platforms = platforms.unix;
28   };