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 {
11 repo = "urxvt-theme-switch";
12 rev = "cfcbcc3dd5a5b09a3fec0f6a1fea95f4a36a48c4";
13 sha256 = "0x27m1vdqprn3lqpwgxvffill7prmaj6j9rhgvkvi13mzl5wmlli";
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
23 description = "urxvt plugin that allows to switch color themes during runtime";
24 homepage = "https://github.com/felixr/urxvt-theme-switch";
26 maintainers = with maintainers; [ ];
27 platforms = platforms.unix;