2015-07-22 15:25:00 +01:00
|
|
|
{ stdenv, fetchurl, icmake, libmilter, libX11, openssl, readline
|
2015-05-05 12:08:55 +01:00
|
|
|
, utillinux, yodl }:
|
|
|
|
|
2015-07-03 04:07:25 +01:00
|
|
|
let version = "3.25.02"; in
|
|
|
|
stdenv.mkDerivation {
|
2015-05-05 12:08:55 +01:00
|
|
|
name = "bobcat-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2015-07-03 04:07:25 +01:00
|
|
|
sha256 = "0b1370li4q82fqj982vng9cwkf23k2c1df5jsdcgkrk01r53dxry";
|
|
|
|
url = "mirror://debian/pool/main/b/bobcat/bobcat_${version}.orig.tar.gz";
|
2015-05-05 12:08:55 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
inherit version;
|
|
|
|
description = "Brokken's Own Base Classes And Templates";
|
|
|
|
downloadPage = http://sourceforge.net/projects/bobcat/files/;
|
2015-05-28 18:20:29 +01:00
|
|
|
license = licenses.gpl3;
|
2015-05-05 12:08:55 +01:00
|
|
|
platforms = with platforms; linux;
|
|
|
|
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
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace INSTALL.im --replace /usr $out
|
|
|
|
patchShebangs ./build
|
|
|
|
'';
|
|
|
|
|
|
|
|
buildPhase = ''
|
|
|
|
./build libraries all
|
|
|
|
./build man
|
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
./build install
|
|
|
|
'';
|
|
|
|
}
|