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}";
version = "4.01.04";
2015-05-05 11:08:55 +00:00
2015-09-01 01:46:39 +00:00
src = fetchFromGitHub {
sha256 = "1qnyssvjvwc7ann5rw8spcfrfkxyh1lv3k12bq19d8db67znk4ms";
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
}