Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at release-18.03 20 lines 614 B view raw
1{ stdenv, fetchurl, libxslt, docbook_xsl, libcap }: 2 3stdenv.mkDerivation rec { 4 name = "bubblewrap-${version}"; 5 version = "0.2.0"; 6 7 src = fetchurl { 8 url = "https://github.com/projectatomic/bubblewrap/releases/download/v${version}/${name}.tar.xz"; 9 sha256 = "0ahw30ngpclk3ssa81cb7ydc6a4xc5dpqn6kmxfpc9xr30vimdnc"; 10 }; 11 12 nativeBuildInputs = [ libcap libxslt docbook_xsl ]; 13 14 meta = with stdenv.lib; { 15 description = "Unprivileged sandboxing tool"; 16 homepage = https://github.com/projectatomic/bubblewrap; 17 license = licenses.lgpl2Plus; 18 maintainers = with maintainers; [ konimex ]; 19 }; 20}