mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
rxvt: put suffixes where they belong
This commit is contained in:
parent
d9ee918547
commit
d15fedbcc0
@ -3,14 +3,13 @@
|
||||
unicode3Support }:
|
||||
|
||||
let
|
||||
name = "rxvt-unicode";
|
||||
pname = "rxvt-unicode";
|
||||
version = "9.22";
|
||||
n = "${name}-${version}";
|
||||
in
|
||||
|
||||
stdenv.mkDerivation (rec {
|
||||
|
||||
name = "${n}${if perlSupport then "-with-perl" else ""}${if unicode3Support then "-with-unicode3" else ""}";
|
||||
name = "${pname}${if perlSupport then "-with-perl" else ""}${if unicode3Support then "-with-unicode3" else ""}-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://dist.schmorp.de/rxvt-unicode/Attic/rxvt-unicode-${version}.tar.bz2";
|
||||
|
@ -4,9 +4,10 @@ let
|
||||
rxvt = rxvt_unicode.override {
|
||||
perlSupport = true;
|
||||
};
|
||||
rxvt_name = builtins.parseDrvName rxvt.name;
|
||||
|
||||
in symlinkJoin {
|
||||
name = "${rxvt.name}-with-plugins";
|
||||
name = "${rxvt_name.name}-with-plugins-${rxvt_name.version}";
|
||||
|
||||
paths = [ rxvt ] ++ plugins;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user