summary refs log tree commit diff
diff options
context:
space:
mode:
authorJoel Taylor <me@joelt.io>2015-05-15 15:33:35 -0700
committerJoel Taylor <me@joelt.io>2015-05-15 15:33:35 -0700
commit740d3b15172e2f88bbab972a82ae2bce6828fa84 (patch)
tree5c48c0ee433f54411221d81b9a5e76dfc6d75534
parent78ef78719f8c084a114be8efc77248ceefd58dc8 (diff)
downloadnixpkgs-740d3b15172e2f88bbab972a82ae2bce6828fa84.tar
nixpkgs-740d3b15172e2f88bbab972a82ae2bce6828fa84.tar.gz
nixpkgs-740d3b15172e2f88bbab972a82ae2bce6828fa84.tar.bz2
nixpkgs-740d3b15172e2f88bbab972a82ae2bce6828fa84.tar.lz
nixpkgs-740d3b15172e2f88bbab972a82ae2bce6828fa84.tar.xz
nixpkgs-740d3b15172e2f88bbab972a82ae2bce6828fa84.tar.zst
nixpkgs-740d3b15172e2f88bbab972a82ae2bce6828fa84.zip
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.
-rw-r--r--pkgs/os-specific/linux/libcap/default.nix2
1 files changed, 0 insertions, 2 deletions
diff --git a/pkgs/os-specific/linux/libcap/default.nix b/pkgs/os-specific/linux/libcap/default.nix
index 1ffdaa36e96..8157270d67d 100644
--- a/pkgs/os-specific/linux/libcap/default.nix
+++ b/pkgs/os-specific/linux/libcap/default.nix
@@ -1,7 +1,5 @@
 { stdenv, fetchurl, attr, perl }:
 
-assert stdenv.isLinux;
-
 stdenv.mkDerivation rec {
   name = "libcap-${version}";
   version = "2.24";