lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

dict: 1.13.1 → 1.13.3

+12 -16
+2 -2
pkgs/servers/dict/buildfix.diff
··· 1 - --- Makefile.in~ 2011-03-06 18:52:54.000000000 +0100 2 - +++ Makefile.in 2014-01-29 19:04:51.384844897 +0100 1 + --- a/Makefile.in~ 2011-03-06 18:52:54.000000000 +0100 2 + +++ a/Makefile.in 2014-01-29 19:04:51.384844897 +0100 3 3 @@ -123,7 +123,7 @@ 4 4 5 5 %: %.o
+10 -14
pkgs/servers/dict/default.nix
··· 12 12 13 13 stdenv.mkDerivation rec { 14 14 pname = "dictd"; 15 - version = "1.13.1"; 15 + version = "1.13.3"; 16 16 17 17 src = fetchurl { 18 18 url = "mirror://sourceforge/dict/dictd-${version}.tar.gz"; 19 - sha256 = "sha256-5PGmfRaJTYSUVp19yUQsFcw4wBHyuWMcfxzGInZlKhs="; 19 + hash = "sha256-GSEp37OPpyP0ipWGx5xRmPxJBP7BdXF2kXMU3Qc/EXE="; 20 20 }; 21 + 22 + patches = [ 23 + ./buildfix.diff 24 + ]; 21 25 22 26 buildInputs = [ 23 27 libmaa ··· 34 38 # In earlier versions, parallel building was not supported but it's OK with 1.13 35 39 enableParallelBuilding = true; 36 40 37 - patchPhase = "patch -p0 < ${./buildfix.diff}"; 38 - 39 41 configureFlags = [ 40 42 "--datadir=/run/current-system/sw/share/dictd" 41 43 "--sysconfdir=/etc" 42 44 ]; 43 45 44 - env.NIX_CFLAGS_COMPILE = toString ( 45 - lib.optionals stdenv.cc.isClang [ 46 - "-Wno-error=implicit-function-declaration" 47 - ] 48 - ); 49 - 50 46 postInstall = '' 51 47 install -Dm444 -t $out/share/doc/${pname} NEWS README 52 48 ''; 53 49 54 - meta = with lib; { 50 + meta = { 55 51 description = "Dict protocol server and client"; 56 52 homepage = "http://www.dict.org"; 57 - license = licenses.gpl2Plus; 58 - maintainers = with maintainers; [ sikmir ]; 59 - platforms = platforms.unix; 53 + license = lib.licenses.gpl2Plus; 54 + maintainers = with lib.maintainers; [ sikmir ]; 55 + platforms = lib.platforms.unix; 60 56 }; 61 57 }