summary refs log tree commit diff
path: root/pkgs/development/libraries/bobcat/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/libraries/bobcat/default.nix')
-rw-r--r--pkgs/development/libraries/bobcat/default.nix42
1 files changed, 42 insertions, 0 deletions
diff --git a/pkgs/development/libraries/bobcat/default.nix b/pkgs/development/libraries/bobcat/default.nix
new file mode 100644
index 00000000000..87eb1e324ce
--- /dev/null
+++ b/pkgs/development/libraries/bobcat/default.nix
@@ -0,0 +1,42 @@
+{ stdenv, fetchFromGitHub, icmake, libmilter, libX11, openssl, readline
+, utillinux, yodl }:
+
+let version = "4.00.00"; in
+stdenv.mkDerivation {
+  name = "bobcat-${version}";
+
+  src = fetchFromGitHub {
+    sha256 = "0wdb25sgw7i3jk3lbja6b4ipqfg1sncam6adg2bn8l5fcinrpwgs";
+    rev = version;
+    repo = "bobcat";
+    owner = "fbb-git";
+  };
+
+  meta = with stdenv.lib; {
+    inherit version;
+    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 ];
+  };
+
+  buildInputs = [ libmilter libX11 openssl readline utillinux ];
+  nativeBuildInputs = [ icmake yodl ];
+
+  sourceRoot = "bobcat-${version}-src/bobcat";
+
+  postPatch = ''
+    substituteInPlace INSTALL.im --replace /usr $out
+    patchShebangs ./build
+  '';
+
+  buildPhase = ''
+    ./build libraries all
+    ./build man
+  '';
+
+  installPhase = ''
+    ./build install
+  '';
+}