lol
at 18.03-beta 27 lines 709 B view raw
1{ stdenv, buildGoPackage, fetchFromGitHub, pkgconfig, libgit2 }: 2 3buildGoPackage rec { 4 name = "blsd-${version}"; 5 version = "2017-07-27"; 6 7 goPackagePath = "github.com/junegunn/blsd"; 8 9 src = fetchFromGitHub { 10 owner = "junegunn"; 11 repo = "blsd"; 12 rev = "a2ac619821e502452abdeae9ebab45026893b9e8"; 13 sha256 = "0b0q6i4i28cjqgxqmwxbps22gp9rcd3jz562q5wvxrwlpbzlls2h"; 14 }; 15 16 goDeps = ./deps.nix; 17 18 nativeBuildInputs = [ pkgconfig libgit2 ]; 19 20 meta = with stdenv.lib; { 21 homepage = https://github.com/junegunn/blsd; 22 description = "List directories in breadth-first order"; 23 license = licenses.mit; 24 maintainers = [ maintainers.magnetophon ]; 25 platforms = platforms.unix; 26 }; 27}