Merge pull request #1638 from wkennington/cache.mumble

Add more configurable options to mumble
This commit is contained in:
Domen Kožar
2014-01-31 00:03:20 -08:00
6 changed files with 138 additions and 26 deletions

View File

@@ -0,0 +1,19 @@
{ stdenv, fetchurl, mcpp }:
stdenv.mkDerivation rec {
name = "mcpp-2.7.2";
src = fetchurl {
url = "mirror://sourceforge/mcpp/${name}.tar.gz";
sha256 = "0r48rfghjm90pkdyr4khxg783g9v98rdx2n69xn8f6c5i0hl96rv";
};
configureFlags = [ "--enable-mcpplib" ];
meta = with stdenv.lib; {
homepage = "http://mcpp.sourceforge.net/";
description = "A portable c preprocessor";
license = licenses.bsd2;
platforms = platforms.unix;
};
}