bd01fad0ed
In line with the Nixpkgs manual. A mechanical change, done with this command: find pkgs -name "*.nix" | \ while read f; do \ sed -e 's/description\s*=\s*"\([a-z]\)/description = "\u\1/' -i "$f"; \ done I manually skipped some: * Descriptions starting with an abbreviation, a user name or package name * Frequently generated expressions (haskell-packages.nix)
32 lines
846 B
Nix
32 lines
846 B
Nix
{ stdenv, fetchFromGitHub, adns, boehmgc, openssl, automake, m4, autoconf
|
|
, libtool, pkgconfig }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "gale-1.1happy";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "grawity";
|
|
repo = "gale";
|
|
rev = "b34a67288e8bd6f0b51b60abb704858172a3665c";
|
|
sha256 = "19mcisxxqx70m059rqwv7wpmp94fgyckzjwywpmdqd7iwvppnsqf";
|
|
};
|
|
|
|
nativeBuildInputs = [ m4 libtool automake autoconf ];
|
|
buildInputs = [ boehmgc openssl adns pkgconfig ];
|
|
|
|
patches = [ ./gale-install.in.patch ];
|
|
|
|
preConfigure = ''
|
|
substituteInPlace configure.ac --replace \$\{sysconfdir\} /etc
|
|
./bootstrap
|
|
'';
|
|
configureArgs = [ "--sysconfdir=/etc" ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "http://gale.org/";
|
|
description = "Chat/messaging system (server and client)";
|
|
platforms = platforms.all;
|
|
license = licenses.gpl2Plus;
|
|
};
|
|
}
|