Remove isLinux assertion from libcap

Heimdal evaluates libcap's meta.platforms to determine if it should be pulled in or not,
and that fails if the stdenv.isLinux assertion fails.
This commit is contained in:
Joel Taylor 2015-05-15 15:33:35 -07:00
parent 78ef78719f
commit 740d3b1517

View File

@ -1,7 +1,5 @@
{ stdenv, fetchurl, attr, perl }:
assert stdenv.isLinux;
stdenv.mkDerivation rec {
name = "libcap-${version}";
version = "2.24";