mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-21 05:04:00 +00:00
46420bbaa3
treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
34 lines
963 B
Nix
34 lines
963 B
Nix
{ gestures ? false
|
|
, stdenv, fetchurl, pkgconfig
|
|
, cairo, fontconfig, freetype, libXft, libXcursor, libXinerama
|
|
, libXpm, libXt, librsvg, libpng, fribidi, perl
|
|
, libstroke ? null
|
|
}:
|
|
|
|
assert gestures -> libstroke != null;
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "fvwm";
|
|
version = "2.6.8";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/fvwmorg/fvwm/releases/download/${version}/${pname}-${version}.tar.gz";
|
|
sha256 = "0hgkkdzcqjnaabvv9cnh0bz90nnjskbhjg9qnzpi2x0mbliwjdpv";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [
|
|
cairo fontconfig freetype
|
|
libXft libXcursor libXinerama libXpm libXt
|
|
librsvg libpng fribidi perl
|
|
] ++ stdenv.lib.optional gestures libstroke;
|
|
|
|
meta = {
|
|
homepage = http://fvwm.org;
|
|
description = "A multiple large virtual desktop window manager";
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
|
platforms = stdenv.lib.platforms.linux;
|
|
maintainers = with stdenv.lib.maintainers; [ edanaher ];
|
|
};
|
|
}
|