biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / applications / terminal-emulators / rxvt-unicode-plugins / urxvt-theme-switch / default.nix
blobc7510568e26413126624a2b3233dac90f1f9afe6
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 = with maintainers; [ ];
27     platforms = platforms.unix;
28   };