2015-09-01 01:46:39 +00:00
|
|
|
{ stdenv, fetchFromGitHub, icmake, libmilter, libX11, openssl, readline
|
2015-05-05 11:08:55 +00:00
|
|
|
, utillinux, yodl }:
|
|
|
|
|
2016-01-24 19:31:44 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2015-05-05 11:08:55 +00:00
|
|
|
name = "bobcat-${version}";
|
2016-03-18 01:06:22 +00:00
|
|
|
version = "4.01.04";
|
2015-05-05 11:08:55 +00:00
|
|
|
|
2015-09-01 01:46:39 +00:00
|
|
|
src = fetchFromGitHub {
|
2016-03-18 01:06:22 +00:00
|
|
|
sha256 = "1qnyssvjvwc7ann5rw8spcfrfkxyh1lv3k12bq19d8db67znk4ms";
|
2015-09-01 01:46:39 +00:00
|
|
|
rev = version;
|
|
|
|
repo = "bobcat";
|
|
|
|
owner = "fbb-git";
|
2015-05-05 11:08:55 +00:00
|
|
|
};
|
|
|
|
|
2015-07-22 14:25:00 +00:00
|
|
|
buildInputs = [ libmilter libX11 openssl readline utillinux ];
|
2015-06-17 17:36:06 +00:00
|
|
|
nativeBuildInputs = [ icmake yodl ];
|
2015-05-05 11:08:55 +00:00
|
|
|
|
2015-09-01 01:46:39 +00:00
|
|
|
sourceRoot = "bobcat-${version}-src/bobcat";
|
|
|
|
|
2015-05-05 11:08:55 +00:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace INSTALL.im --replace /usr $out
|
2016-03-18 02:09:45 +00:00
|
|
|
patchShebangs .
|
2015-05-05 11:08:55 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
buildPhase = ''
|
|
|
|
./build libraries all
|
|
|
|
./build man
|
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
2016-03-18 15:35:00 +00:00
|
|
|
./build install x
|
2015-05-05 11:08:55 +00:00
|
|
|
'';
|
2016-01-24 19:31:44 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Brokken's Own Base Classes And Templates";
|
|
|
|
homepage = https://fbb-git.github.io/bobcat/;
|
|
|
|
license = licenses.gpl3;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ nckx ];
|
|
|
|
};
|
2015-05-05 11:08:55 +00:00
|
|
|
}
|