mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 16:42:09 +00:00
28ac782583
There are many more packages to fix, this is just a start. Rules: * Don't repeat the package name (not always that easy...) * Start with capital letter * Don't end with full stop * Don't start with "The ..." or "A ..." I've also added descriptions to some packages and rewritten others.
23 lines
618 B
Nix
23 lines
618 B
Nix
{stdenv, fetchurl, which, tcl, tk, x11, libpng, libjpeg, makeWrapper}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "amsn-0.98.4";
|
|
src = fetchurl {
|
|
url = mirror://sourceforge/amsn/amsn-0.98.4-src.tar.gz;
|
|
sha256 = "1kcn1hc6bvgy4svf5l3j5psdrvsmy0p3r33fn7gzcinqdf3xfgqx";
|
|
};
|
|
|
|
configureFlags = "--with-tcl=${tcl}/lib --with-tk=${tk}/lib --enable-static";
|
|
|
|
buildInputs = [which tcl tk x11 libpng libjpeg makeWrapper];
|
|
|
|
postInstall = ''
|
|
wrapProgram $out/bin/amsn --prefix PATH : ${tk}/bin
|
|
'';
|
|
|
|
meta = {
|
|
description = "Instant messaging (MSN Messenger clone)";
|
|
homepage = http://amsn-project.net;
|
|
};
|
|
}
|