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

44 lines
926 B
Nix
Raw Normal View History

2017-03-16 23:41:33 +00:00
{ stdenv, fetchFromGitHub, icmake
, libmilter, libX11, openssl, readline
2015-05-05 11:08:55 +00:00
, utillinux, yodl }:
stdenv.mkDerivation rec {
2015-05-05 11:08:55 +00:00
name = "bobcat-${version}";
version = "4.08.03";
2015-05-05 11:08:55 +00:00
2015-09-01 01:46:39 +00:00
src = fetchFromGitHub {
sha256 = "163mdl8hxids7123bjxmqhcaqyc1dv7hv8k33s713ac6lzawarq2";
2015-09-01 01:46:39 +00:00
rev = version;
repo = "bobcat";
owner = "fbb-git";
2015-05-05 11:08:55 +00:00
};
buildInputs = [ libmilter libX11 openssl readline utillinux ];
nativeBuildInputs = [ icmake yodl ];
2015-05-05 11:08:55 +00:00
setSourceRoot = ''
sourceRoot=$(echo */bobcat)
'';
2015-09-01 01:46:39 +00:00
2015-05-05 11:08:55 +00:00
postPatch = ''
substituteInPlace INSTALL.im --replace /usr $out
patchShebangs .
2015-05-05 11:08:55 +00:00
'';
buildPhase = ''
./build libraries all
./build man
'';
installPhase = ''
./build install x
2015-05-05 11:08:55 +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;
};
2015-05-05 11:08:55 +00:00
}