nixpkgs/pkgs/development/libraries/bobcat/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

49 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitLab, icmake
2017-03-16 23:41:33 +00:00
, libmilter, libX11, openssl, readline
2020-11-24 15:29:28 +00:00
, util-linux, yodl }:
2015-05-05 11:08:55 +00:00
stdenv.mkDerivation rec {
pname = "bobcat";
2022-04-22 12:08:27 +00:00
version = "5.10.01";
2015-05-05 11:08:55 +00:00
src = fetchFromGitLab {
2022-04-22 12:08:27 +00:00
sha256 = "sha256-QhjUIaPSDAvOt0ZCzQWASpG+GJaTviosGDrzrckhuhs=";
domain = "gitlab.com";
2015-09-01 01:46:39 +00:00
rev = version;
repo = "bobcat";
owner = "fbb-git";
2015-05-05 11:08:55 +00:00
};
2020-11-24 15:29:28 +00:00
buildInputs = [ libmilter libX11 openssl readline util-linux ];
nativeBuildInputs = [ icmake yodl ];
2015-05-05 11:08:55 +00:00
setSourceRoot = ''
sourceRoot=$(echo */bobcat)
'';
2015-09-01 01:46:39 +00:00
2015-05-05 11:08:55 +00:00
postPatch = ''
substituteInPlace INSTALL.im --replace /usr $out
patchShebangs .
2015-05-05 11:08:55 +00:00
'';
# have to link to static gcc lib on aarch64-linux explicitly
2023-01-26 14:11:41 +00:00
# https://github.com/NixOS/nixpkgs/issues/201254
NIX_LDFLAGS = lib.optionalString (with stdenv.targetPlatform; isAarch64 && isLinux) "-lgcc";
2015-05-05 11:08:55 +00:00
buildPhase = ''
./build libraries all
./build man
'';
installPhase = ''
./build install x
2015-05-05 11:08:55 +00:00
'';
meta = with lib; {
description = "Brokken's Own Base Classes And Templates";
homepage = "https://fbb-git.gitlab.io/bobcat/";
license = licenses.gpl3;
platforms = platforms.linux;
};
2015-05-05 11:08:55 +00:00
}