uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
34
pkgs/development/libraries/biblesync/default.nix
Normal file
34
pkgs/development/libraries/biblesync/default.nix
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
{ lib, stdenv, fetchFromGitHub, pkg-config, cmake, libuuid }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
|
||||
pname = "biblesync";
|
||||
version = "2.1.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "karlkleinpaste";
|
||||
repo = "biblesync";
|
||||
rev = version;
|
||||
sha256 = "0prmd12jq2cjdhsph5v89y38j7hhd51dr3r1hivgkhczr3m5hf4s";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkg-config cmake ];
|
||||
buildInputs = [ libuuid ];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://wiki.crosswire.org/BibleSync";
|
||||
description = "A multicast protocol to Bible software shared conavigation";
|
||||
longDescription = ''
|
||||
BibleSync is a multicast protocol to support Bible software shared
|
||||
co-navigation. It uses LAN multicast in either a personal/small team
|
||||
mutual navigation motif or in a classroom environment where there are
|
||||
Speakers plus the Audience. The library implementing the protocol is a
|
||||
single C++ class providing a complete yet minimal public interface to
|
||||
support mode setting, setup for packet reception, transmit on local
|
||||
navigation, and handling of incoming packets.
|
||||
'';
|
||||
license = licenses.publicDomain;
|
||||
maintainers = [ maintainers.AndersonTorres ];
|
||||
platforms = lib.platforms.linux;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue