tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
urxvt-theme-switch: cleanup pname+version
Sandro Jäckel
4 years ago
e9892191
a244c697
+3
-4
1 changed file
expand all
collapse all
unified
split
pkgs
applications
terminal-emulators
rxvt-unicode-plugins
urxvt-theme-switch
default.nix
+3
-4
pkgs/applications/terminal-emulators/rxvt-unicode-plugins/urxvt-theme-switch/default.nix
···
1
{ lib, stdenv, fetchFromGitHub }:
2
3
stdenv.mkDerivation rec {
4
-
rev = "cfcbcc3dd5a5b09a3fec0f6a1fea95f4a36a48c4";
5
pname = "urxvt-theme-switch";
6
-
version = "unstable-2014-12-21_rev${builtins.substring 0 1 rev}";
7
8
dontPatchShebangs = true;
9
10
src = fetchFromGitHub {
11
owner = "felixr";
12
repo = "urxvt-theme-switch";
13
-
inherit rev;
14
sha256 = "0x27m1vdqprn3lqpwgxvffill7prmaj6j9rhgvkvi13mzl5wmlli";
15
};
16
···
25
homepage = "https://github.com/felixr/urxvt-theme-switch";
26
license = "CCBYNC";
27
maintainers = with maintainers; [ ];
28
-
platforms = with platforms; unix;
29
};
30
}
···
1
{ lib, stdenv, fetchFromGitHub }:
2
3
stdenv.mkDerivation rec {
0
4
pname = "urxvt-theme-switch";
5
+
version = "unstable-2014-12-21";
6
7
dontPatchShebangs = true;
8
9
src = fetchFromGitHub {
10
owner = "felixr";
11
repo = "urxvt-theme-switch";
12
+
rev = "cfcbcc3dd5a5b09a3fec0f6a1fea95f4a36a48c4";
13
sha256 = "0x27m1vdqprn3lqpwgxvffill7prmaj6j9rhgvkvi13mzl5wmlli";
14
};
15
···
24
homepage = "https://github.com/felixr/urxvt-theme-switch";
25
license = "CCBYNC";
26
maintainers = with maintainers; [ ];
27
+
platforms = platforms.unix;
28
};
29
}