tree-wide: various cleanups

It's mainly refactoring and mass-rebuild simplifications without any
real impact (besides better readability).
This commit is contained in:
Vladimír Čunát
2016-01-02 11:29:45 +01:00
parent 072da541de
commit 1878ac9335
8 changed files with 26 additions and 26 deletions
+2 -2
View File
@@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
name = "${name}.tar.gz";
};
patches = stdenv.lib.optional stdenv.isFreeBSD [ ./freebsd.patch ];
patches = stdenv.lib.optional stdenv.isFreeBSD ./freebsd.patch;
doCheck = !stdenv.isFreeBSD;
@@ -20,6 +20,6 @@ stdenv.mkDerivation rec {
inherit version;
homepage = http://miniupnp.free.fr/;
description = "A client that implements the UPnP Internet Gateway Device (IGD) specification";
platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.freebsd;
platforms = with stdenv.lib.platforms; linux ++ freebsd;
};
}