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

45 lines
954 B
Nix
Raw Normal View History

{ 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 12:08:55 +01:00
stdenv.mkDerivation rec {
pname = "bobcat";
version = "5.05.00";
2015-05-05 12:08:55 +01:00
src = fetchFromGitLab {
sha256 = "sha256:14lvxzkxmkk54s97ah996m6s1wbw1g3iwawbhsf8qw7sf75vlp1h";
domain = "gitlab.com";
2015-09-01 02:46:39 +01:00
rev = version;
repo = "bobcat";
owner = "fbb-git";
2015-05-05 12:08:55 +01:00
};
2020-11-24 15:29:28 +00:00
buildInputs = [ libmilter libX11 openssl readline util-linux ];
nativeBuildInputs = [ icmake yodl ];
2015-05-05 12:08:55 +01:00
setSourceRoot = ''
sourceRoot=$(echo */bobcat)
'';
2015-09-01 02:46:39 +01:00
2015-05-05 12:08:55 +01:00
postPatch = ''
substituteInPlace INSTALL.im --replace /usr $out
patchShebangs .
2015-05-05 12:08:55 +01:00
'';
buildPhase = ''
./build libraries all
./build man
'';
installPhase = ''
./build install x
2015-05-05 12:08:55 +01:00
'';
meta = with stdenv.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 12:08:55 +01:00
}