2015-09-01 02:46:39 +01:00
|
|
|
{ stdenv, fetchFromGitHub, icmake, libmilter, libX11, openssl, readline
|
2015-05-05 12:08:55 +01:00
|
|
|
, utillinux, yodl }:
|
|
|
|
|
2015-09-01 02:46:39 +01:00
|
|
|
let version = "4.00.00"; in
|
2015-07-03 04:07:25 +01:00
|
|
|
stdenv.mkDerivation {
|
2015-05-05 12:08:55 +01:00
|
|
|
name = "bobcat-${version}";
|
|
|
|
|
2015-09-01 02:46:39 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
sha256 = "0wdb25sgw7i3jk3lbja6b4ipqfg1sncam6adg2bn8l5fcinrpwgs";
|
|
|
|
rev = version;
|
|
|
|
repo = "bobcat";
|
|
|
|
owner = "fbb-git";
|
2015-05-05 12:08:55 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
inherit version;
|
|
|
|
description = "Brokken's Own Base Classes And Templates";
|
2015-09-01 02:46:39 +01:00
|
|
|
homepage = https://fbb-git.github.io/bobcat/;
|
2015-05-28 18:20:29 +01:00
|
|
|
license = licenses.gpl3;
|
2015-09-01 02:46:39 +01:00
|
|
|
platforms = platforms.linux;
|
2015-05-05 12:08:55 +01:00
|
|
|
maintainers = with maintainers; [ nckx ];
|
|
|
|
};
|
|
|
|
|
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
|
|
|
|
2015-09-01 02:46:39 +01:00
|
|
|
sourceRoot = "bobcat-${version}-src/bobcat";
|
|
|
|
|
2015-05-05 12:08:55 +01:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace INSTALL.im --replace /usr $out
|
|
|
|
patchShebangs ./build
|
|
|
|
'';
|
|
|
|
|
|
|
|
buildPhase = ''
|
|
|
|
./build libraries all
|
|
|
|
./build man
|
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
./build install
|
|
|
|
'';
|
|
|
|
}
|