mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
46420bbaa3
treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
29 lines
700 B
Nix
29 lines
700 B
Nix
{ stdenv, fetchFromGitHub, gnugrep, ncurses, pkgconfig, readline }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "pspg";
|
|
version = "1.6.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "okbob";
|
|
repo = "pspg";
|
|
rev = "${version}";
|
|
sha256 = "1lwzyimn28a7q8k2c8z7and4qhrdil0za8lixh96z6x4lcb0rz5q";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ gnugrep ncurses readline ];
|
|
|
|
preBuild = ''
|
|
makeFlags="PREFIX=$out PKG_CONFIG=${pkgconfig}/bin/pkg-config"
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://github.com/okbob/pspg;
|
|
description = "Postgres Pager";
|
|
license = licenses.bsd2;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.jlesquembre ];
|
|
};
|
|
}
|