1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-26 23:52:33 +00:00

Merge pull request #12271 from aespinosa/axel-buildable-on-osx

axel: mark as buildable on darwin
This commit is contained in:
Pascal Wittmann 2016-01-09 19:42:32 +01:00
commit 1617d3bcf6

View file

@ -17,6 +17,6 @@ stdenv.mkDerivation rec {
description = "Console downloading program with some features for parallel connections for faster downloading";
homepage = http://axel.alioth.debian.org/;
maintainers = with maintainers; [ pSub ];
platforms = platforms.linux;
platforms = with platforms; linux ++ darwin;
};
}