2017-03-16 23:41:33 +00:00
|
|
|
{ stdenv, fetchFromGitHub, icmake
|
|
|
|
, libmilter, libX11, openssl, readline
|
2015-05-05 12:08:55 +01:00
|
|
|
, utillinux, yodl }:
|
|
|
|
|
2016-01-24 19:31:44 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "bobcat";
|
2018-05-11 17:13:58 +01:00
|
|
|
version = "4.08.03";
|
2015-05-05 12:08:55 +01:00
|
|
|
|
2015-09-01 02:46:39 +01:00
|
|
|
src = fetchFromGitHub {
|
2018-05-11 17:13:58 +01:00
|
|
|
sha256 = "163mdl8hxids7123bjxmqhcaqyc1dv7hv8k33s713ac6lzawarq2";
|
2015-09-01 02:46:39 +01:00
|
|
|
rev = version;
|
|
|
|
repo = "bobcat";
|
|
|
|
owner = "fbb-git";
|
2015-05-05 12:08:55 +01:00
|
|
|
};
|
|
|
|
|
2015-07-22 15:25:00 +01:00
|
|
|
buildInputs = [ libmilter libX11 openssl readline utillinux ];
|
2015-06-17 18:36:06 +01:00
|
|
|
nativeBuildInputs = [ icmake yodl ];
|
2015-05-05 12:08:55 +01:00
|
|
|
|
2017-11-02 12:54:20 +00: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
|
2016-03-18 02:09:45 +00:00
|
|
|
patchShebangs .
|
2015-05-05 12:08:55 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
buildPhase = ''
|
|
|
|
./build libraries all
|
|
|
|
./build man
|
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
2016-03-18 15:35:00 +00:00
|
|
|
./build install x
|
2015-05-05 12:08:55 +01:00
|
|
|
'';
|
2016-01-24 19:31:44 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Brokken's Own Base Classes And Templates";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://fbb-git.github.io/bobcat/";
|
2016-01-24 19:31:44 +00:00
|
|
|
license = licenses.gpl3;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
2015-05-05 12:08:55 +01:00
|
|
|
}
|