mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 11:32:03 +00:00
af2ab0b911
An interesting thing is that: stdenv != overrideCC stdenv gcc49;
I'm not sure why that is, but it doesn't seem important.
/cc maintainers: @nckx, @garbas, @abbradar, @cstrahan, @grwlf.
(cherry picked from commit 3064b6a0cc
)
39 lines
960 B
Nix
39 lines
960 B
Nix
{ stdenv, fetchurl, icmake, libmilter, libX11, openssl, readline
|
|
, utillinux, yodl }:
|
|
|
|
let version = "3.25.02"; in
|
|
stdenv.mkDerivation {
|
|
name = "bobcat-${version}";
|
|
|
|
src = fetchurl {
|
|
sha256 = "0b1370li4q82fqj982vng9cwkf23k2c1df5jsdcgkrk01r53dxry";
|
|
url = "mirror://debian/pool/main/b/bobcat/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 = licenses.gpl3;
|
|
platforms = with platforms; linux;
|
|
maintainers = with maintainers; [ nckx ];
|
|
};
|
|
|
|
buildInputs = [ libmilter libX11 openssl readline utillinux ];
|
|
nativeBuildInputs = [ icmake yodl ];
|
|
|
|
postPatch = ''
|
|
substituteInPlace INSTALL.im --replace /usr $out
|
|
patchShebangs ./build
|
|
'';
|
|
|
|
buildPhase = ''
|
|
./build libraries all
|
|
./build man
|
|
'';
|
|
|
|
installPhase = ''
|
|
./build install
|
|
'';
|
|
}
|