libtar: add darwin to supported platforms

This commit is contained in:
Badi Abdul-Wahid 2018-03-11 01:38:34 -05:00
parent fb8a85f631
commit 3117ae6c4f
No known key found for this signature in database
GPG Key ID: 5C02A763FA1FF588

View File

@ -31,7 +31,7 @@ stdenv.mkDerivation rec {
description = "C library for manipulating POSIX tar files";
homepage = http://www.feep.net/libtar/;
license = licenses.bsd3;
platforms = platforms.linux;
platforms = with platforms; linux ++ darwin;
maintainers = [ maintainers.bjornfor ];
};
}