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

39 lines
960 B
Nix
Raw Normal View History

{ stdenv, fetchurl, icmake, libmilter, libX11, openssl, readline
2015-05-05 11:08:55 +00:00
, utillinux, yodl }:
let version = "3.25.02"; in
stdenv.mkDerivation {
2015-05-05 11:08:55 +00:00
name = "bobcat-${version}";
src = fetchurl {
sha256 = "0b1370li4q82fqj982vng9cwkf23k2c1df5jsdcgkrk01r53dxry";
url = "mirror://debian/pool/main/b/bobcat/bobcat_${version}.orig.tar.gz";
2015-05-05 11:08:55 +00:00
};
meta = with stdenv.lib; {
inherit version;
description = "Brokken's Own Base Classes And Templates";
downloadPage = http://sourceforge.net/projects/bobcat/files/;
license = licenses.gpl3;
2015-05-05 11:08:55 +00:00
platforms = with platforms; linux;
maintainers = with maintainers; [ nckx ];
};
buildInputs = [ libmilter libX11 openssl readline utillinux ];
nativeBuildInputs = [ icmake yodl ];
2015-05-05 11:08:55 +00:00
postPatch = ''
substituteInPlace INSTALL.im --replace /usr $out
patchShebangs ./build
'';
buildPhase = ''
./build libraries all
./build man
'';
installPhase = ''
./build install
'';
}