5bca69ac34
Unneded args.something replaced with args: with args; line. After this line args is the only place where we can recieve variables from. Also removed several buildInputs = []; lines. svn path=/nixpkgs/trunk/; revision=10415
16 lines
361 B
Nix
16 lines
361 B
Nix
args: with args;
|
|
stdenv.mkDerivation {
|
|
name = "msmtp-1.4.13";
|
|
|
|
src = fetchurl {
|
|
url = http://dfn.dl.sourceforge.net/sourceforge/msmtp/msmtp-1.4.13.tar.bz2;
|
|
sha256 = "1x8q8dhcpnjym3icz6070l13hz98fvdvgc5j5psj4pmxbswx0r4p";
|
|
};
|
|
|
|
meta = {
|
|
description = "a MUA";
|
|
homepage = http://msmtp.sourceforge.net/;
|
|
license = "GPL";
|
|
};
|
|
}
|