nixpkgs/pkgs/applications/window-managers/windowlab/default.nix
Jonathan Ringer 9bb3fccb5b treewide: pkgs.pkgconfig -> pkgs.pkg-config, move pkgconfig to alias.nix
continuation of #109595

pkgconfig was aliased in 2018, however, it remained in
all-packages.nix due to its wide usage. This cleans
up the remaining references to pkgs.pkgsconfig and
moves the entry to aliases.nix.

python3Packages.pkgconfig remained unchanged because
it's the canonical name of the upstream package
on pypi.
2021-01-19 01:16:25 -08:00

37 lines
969 B
Nix

{ lib, stdenv, fetchurl, pkg-config
, libX11, libXext, libXft }:
let version = "1.40"; in
stdenv.mkDerivation {
pname = "windowlab";
inherit version;
src = fetchurl {
url = "http://nickgravgaard.com/windowlab/windowlab-${version}.tar";
sha256 = "1fx4jwq4s98p2wpvawsiww7d6568bpjgcjpks61dzfj8p2j32s4d";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ libX11 libXext libXft ];
postPatch =
''
mv Makefile Makefile.orig
echo \
"
DEFINES += -DXFT
EXTRA_INC += $(pkg-config --cflags xft)
EXTRA_LIBS += $(pkg-config --libs xft)
" > Makefile
sed "s|/usr/local|$out|g" Makefile.orig >> Makefile
'';
meta = with lib;
{ description = "Small and simple stacking window manager";
homepage = "http://nickgravgaard.com/windowlab/";
license = licenses.gpl2;
maintainers = with maintainers; [ ehmry ];
platforms = platforms.linux;
};
}