Skip to content

Commit

Permalink
ratpoison: 1.4.8 -> 1.4.9
Browse files Browse the repository at this point in the history
Contains changes that require updating user configs:

- command `compat' and the various def* compat commands were removed
- `msgwait', `rudeness', `startupmessage', `warp' are now variables

See http://git.savannah.nongnu.org/cgit/ratpoison.git/tree/NEWS
  • Loading branch information
joachifm committed Apr 17, 2017
1 parent 1d84a91 commit aeaa79d
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions pkgs/applications/window-managers/ratpoison/default.nix
@@ -1,22 +1,29 @@
{ stdenv, fetchurl, pkgconfig, perl, autoconf, automake
, libX11, inputproto, libXt, libXpm, libXft, libXtst, xextproto, libXi
, fontconfig, freetype, readline
, libXrandr, fontconfig, freetype, readline
}:

stdenv.mkDerivation rec {
name = "ratpoison-${version}";
version = "1.4.8";
version = "1.4.9";

src = fetchurl {
url = "mirror://savannah/ratpoison/${name}.tar.xz";
sha256 = "1w502z55vv7zs45l80nsllqh9fvfwjfdfi11xy1qikhzdmirains";
sha256 = "1wfir1gvh5h7izgvx2kd1pr2k7wlncd33zq7qi9s9k2y0aza93yr";
};

outputs = [ "out" "contrib" "doc" "info" ];

configureFlags = [
# >=1.4.9 requires this even with readline in inputs
"--enable-history"
];

nativeBuildInputs = [ pkgconfig autoconf automake ];

buildInputs =
[ pkgconfig perl autoconf automake
libX11 inputproto libXt libXpm libXft libXtst xextproto libXi
[ perl
libX11 inputproto libXt libXpm libXft libXtst xextproto libXi libXrandr
fontconfig freetype readline ];

postInstall = ''
Expand Down

0 comments on commit aeaa79d

Please sign in to comment.