9bb3fccb5b
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.
39 lines
1.0 KiB
Nix
39 lines
1.0 KiB
Nix
{ lib, stdenv, fetchurl, pkg-config, writeText, libX11, ncurses
|
|
, libXft, conf ? null, patches ? [], extraLibs ? []}:
|
|
|
|
with lib;
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "st";
|
|
version = "0.8.4";
|
|
|
|
src = fetchurl {
|
|
url = "https://dl.suckless.org/st/${pname}-${version}.tar.gz";
|
|
sha256 = "19j66fhckihbg30ypngvqc9bcva47mp379ch5vinasjdxgn3qbfl";
|
|
};
|
|
|
|
inherit patches;
|
|
|
|
configFile = optionalString (conf!=null) (writeText "config.def.h" conf);
|
|
|
|
postPatch = optionalString (conf!=null) "cp ${configFile} config.def.h"
|
|
+ optionalString stdenv.isDarwin ''
|
|
substituteInPlace config.mk --replace "-lrt" ""
|
|
'';
|
|
|
|
nativeBuildInputs = [ pkg-config ncurses ];
|
|
buildInputs = [ libX11 libXft ] ++ extraLibs;
|
|
|
|
installPhase = ''
|
|
TERMINFO=$out/share/terminfo make install PREFIX=$out
|
|
'';
|
|
|
|
meta = {
|
|
homepage = "https://st.suckless.org/";
|
|
description = "Simple Terminal for X from Suckless.org Community";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ andsild ];
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
};
|
|
}
|