mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
21 lines
541 B
Nix
21 lines
541 B
Nix
{ stdenv, fetchurl, pkgconfig, libX11, libXft, libXmu }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "windowmaker-${version}";
|
|
version = "0.95.5";
|
|
|
|
src = fetchurl {
|
|
url = "http://windowmaker.org/pub/source/release/"
|
|
+ "WindowMaker-${version}.tar.gz";
|
|
sha256 = "1l3hmx4jzf6vp0zclqx9gsqrlwh4rvqm1g1zr5ha0cp0zmsg89ab";
|
|
};
|
|
|
|
buildInputs = [ pkgconfig libX11 libXft libXmu ];
|
|
|
|
meta = {
|
|
homepage = "http://windowmaker.org/";
|
|
description = "NeXTSTEP-like window manager";
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
|
};
|
|
}
|