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

44 lines
926 B
Nix
Raw Normal View History

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