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

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

45 lines
944 B
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";
2021-08-10 17:37:59 +00:00
version = "5.09.01";
2015-05-05 11:08:55 +00:00
src = fetchFromGitLab {
2021-08-10 17:37:59 +00:00
sha256 = "sha256-kaz15mNn/bq1HUknUJqXoLYxPRPX4w340sv9be0M+kQ=";
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
'';
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
}