mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 16:42:09 +00:00
xnbd: init at 0.3.0
This commit is contained in:
parent
140f0a802c
commit
c14fbcc4fc
22
pkgs/tools/networking/xnbd/default.nix
Normal file
22
pkgs/tools/networking/xnbd/default.nix
Normal file
|
@ -0,0 +1,22 @@
|
|||
{ stdenv, fetchurl, pkgconfig, glib }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "xnbd-0.3.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://bitbucket.org/hirofuchi/xnbd/downloads/${name}.tar.bz2";
|
||||
sha256 = "0jlv6cx85sjn8vjhgzmcs5mz2b6xf18mp0h61v1gl7xkbalw1flb";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkgconfig ];
|
||||
|
||||
buildInputs = [ glib ];
|
||||
|
||||
meta = {
|
||||
homepage = https://bitbucket.org/hirofuchi/xnbd;
|
||||
description = "Yet another NBD (Network Block Device) server program";
|
||||
license = stdenv.lib.licenses.gpl2;
|
||||
maintainers = [ stdenv.lib.maintainers.volth ];
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
};
|
||||
}
|
|
@ -3614,6 +3614,7 @@ with pkgs;
|
|||
nawk = callPackage ../tools/text/nawk { };
|
||||
|
||||
nbd = callPackage ../tools/networking/nbd { };
|
||||
xnbd = callPackage ../tools/networking/xnbd { };
|
||||
|
||||
nccl = callPackage ../development/libraries/science/math/nccl {
|
||||
cudatoolkit = cudatoolkit8;
|
||||
|
|
Loading…
Reference in a new issue