mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 05:31:22 +00:00
46420bbaa3
treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
21 lines
608 B
Nix
21 lines
608 B
Nix
{ stdenv, fetchurl, libxslt, docbook_xsl, libcap }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "bubblewrap";
|
|
version = "0.3.3";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/projectatomic/bubblewrap/releases/download/v${version}/${pname}-${version}.tar.xz";
|
|
sha256 = "1zsd6rxryg97dkkhibr0fvq16x3s75qj84rvhdv8p42ag58mz966";
|
|
};
|
|
|
|
nativeBuildInputs = [ libcap libxslt docbook_xsl ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Unprivileged sandboxing tool";
|
|
homepage = https://github.com/projectatomic/bubblewrap;
|
|
license = licenses.lgpl2Plus;
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
}
|