1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

blsd: init at 2017-07-27

This commit is contained in:
Bart Brouns 2017-12-11 16:24:40 +01:00
parent 5483c00288
commit 72c5514202
3 changed files with 42 additions and 0 deletions

View file

@ -0,0 +1,27 @@
{ stdenv, buildGoPackage, fetchFromGitHub, pkgconfig, libgit2 }:
buildGoPackage rec {
name = "blsd-${version}";
version = "2017-07-27";
goPackagePath = "github.com/junegunn/blsd";
src = fetchFromGitHub {
owner = "junegunn";
repo = "blsd";
rev = "a2ac619821e502452abdeae9ebab45026893b9e8";
sha256 = "0b0q6i4i28cjqgxqmwxbps22gp9rcd3jz562q5wvxrwlpbzlls2h";
};
goDeps = ./deps.nix;
nativeBuildInputs = [ pkgconfig libgit2 ];
meta = with stdenv.lib; {
homepage = https://github.com/junegunn/blsd;
description = "List directories in breadth-first order";
license = licenses.mit;
maintainers = [ maintainers.magnetophon ];
platforms = platforms.unix;
};
}

View file

@ -0,0 +1,11 @@
[
{
goPackagePath = "github.com/libgit2/git2go";
fetch = {
type = "git";
url = "https://github.com/libgit2/git2go";
rev = "334260d743d713a55ff3c097ec6707f2bb39e9d5";
sha256 = "0hfya9z2pg29zbc0s92hj241rnbk7d90jzj34q0dp8b7akz6r1rc";
};
}
]

View file

@ -763,6 +763,10 @@ with pkgs;
blockdiag = pythonPackages.blockdiag;
blsd = callPackage ../tools/misc/blsd {
libgit2 = libgit2_0_25;
};
bluez-tools = callPackage ../tools/bluetooth/bluez-tools { };
bmon = callPackage ../tools/misc/bmon { };