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
25
pkgs/tools/misc/livedl/default.nix
Normal file
25
pkgs/tools/misc/livedl/default.nix
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
{ lib, buildGoModule, fetchFromGitHub }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "livedl";
|
||||
version = "unstable-2021-05-16";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "himananiito";
|
||||
repo = pname;
|
||||
rev = "a8720f1e358e5b0ade6fdeb8aacc00781e6cc504";
|
||||
sha256 = "1zax215jp6sl47m8ahssyyrbzn96dh74srq9g61jc76sq10xg329";
|
||||
};
|
||||
|
||||
sourceRoot = "source/src";
|
||||
|
||||
vendorSha256 = "g5Y1IH1U1zOOHygTzAJuBnUj+MyPe64KHTYikipt3TY=";
|
||||
|
||||
meta = with lib; {
|
||||
description = "Command-line tool to download nicovideo.jp livestreams";
|
||||
homepage = "https://github.com/himananiito/livedl";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ wakira ];
|
||||
platforms = platforms.linux ++ platforms.darwin;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue