summaryrefslogtreecommitdiffstats
path: root/pkgs/development/libraries/bobcat
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-05-05 13:08:55 +0200
committerTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-05-05 19:44:47 +0200
commit32ff988030e6657791c6232653242307deddc17f (patch)
tree8f4451ac71fe6cb1157594555547220e5d9abc38 /pkgs/development/libraries/bobcat
parent7a9484863822632a194b672751316372579bd8c0 (diff)
Add bobcat 3.25.01: C++ helper library
Diffstat (limited to 'pkgs/development/libraries/bobcat')
-rw-r--r--pkgs/development/libraries/bobcat/default.nix38
1 files changed, 38 insertions, 0 deletions
diff --git a/pkgs/development/libraries/bobcat/default.nix b/pkgs/development/libraries/bobcat/default.nix
new file mode 100644
index 000000000000..d89a27638349
--- /dev/null
+++ b/pkgs/development/libraries/bobcat/default.nix
@@ -0,0 +1,38 @@
+{ stdenv, fetchurl, gcc49, icmake, libmilter, libX11, openssl, readline
+, utillinux, yodl }:
+
+let version = "3.25.01"; in
+stdenv.mkDerivation rec {
+ name = "bobcat-${version}";
+
+ src = fetchurl {
+ sha256 = "07qc10hnjpmc2wq14kw01vfww5i049y0jmdvkiiafw33ffy0wdca";
+ url = "mirror://sourceforge/bobcat/bobcat/${version}/bobcat_${version}.orig.tar.gz";
+ };
+
+ meta = with stdenv.lib; {
+ inherit version;
+ description = "Brokken's Own Base Classes And Templates";
+ downloadPage = http://sourceforge.net/projects/bobcat/files/;
+ license = with licenses; gpl3;
+ platforms = with platforms; linux;
+ maintainers = with maintainers; [ nckx ];
+ };
+
+ buildInputs = [ gcc49 icmake libmilter libX11 openssl readline utillinux
+ yodl ];
+
+ postPatch = ''
+ substituteInPlace INSTALL.im --replace /usr $out
+ patchShebangs ./build
+ '';
+
+ buildPhase = ''
+ ./build libraries all
+ ./build man
+ '';
+
+ installPhase = ''
+ ./build install
+ '';
+}