All pastes #2098697 Raw Edit

Unnamed

public text v1 · immutable
#2098697 ·published 2012-01-03 18:12 UTC
rendered paste body
{ stdenv, fetchurl, perl, libX11 }:

stdenv.mkDerivation rec {
  name = "fvwm-2.6.3";

  src = fetchurl {
    url = "ftp://ftp.fvwm.org/pub/fvwm/version-2/${name}.tar.bz2";
    sha256 = "8299b8f8d712f95305e51d8e416e3788e35805adcc0bb2e5bcb6cc33db126152";
  };

  buildInputs = [ perl libX11 ];



  doCheck = true;

}