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

42 lines
959 B
Nix
Raw Normal View History

2015-09-01 01:46:39 +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}";
2016-04-27 16:20:13 +00:00
version = "4.02.00";
2015-05-05 11:08:55 +00:00
2015-09-01 01:46:39 +00:00
src = fetchFromGitHub {
2016-04-27 16:20:13 +00:00
sha256 = "1hl5b2g4cmxcafkcpr4vs0c705cy254g0h410zi5wxnygjam8adn";
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
2015-09-01 01:46:39 +00:00
sourceRoot = "bobcat-${version}-src/bobcat";
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;
maintainers = with maintainers; [ nckx ];
};
2015-05-05 11:08:55 +00:00
}