mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 06:06:13 +03:00
Add bobcat 3.25.01: C++ helper library
This commit is contained in:
parent
7a94848638
commit
32ff988030
38
pkgs/development/libraries/bobcat/default.nix
Normal file
38
pkgs/development/libraries/bobcat/default.nix
Normal file
@ -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
|
||||
'';
|
||||
}
|
@ -5551,6 +5551,8 @@ let
|
||||
|
||||
belle-sip = callPackage ../development/libraries/belle-sip { };
|
||||
|
||||
bobcat = callPackage ../development/libraries/bobcat { };
|
||||
|
||||
boehmgc = callPackage ../development/libraries/boehm-gc { };
|
||||
|
||||
boolstuff = callPackage ../development/libraries/boolstuff { };
|
||||
|
Loading…
Reference in New Issue
Block a user