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
16
pkgs/tools/networking/rtptools/default.nix
Normal file
16
pkgs/tools/networking/rtptools/default.nix
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
{ stdenv, lib, fetchurl }:
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "rtptools";
|
||||
version = "1.22";
|
||||
src = fetchurl {
|
||||
url = "http://www.cs.columbia.edu/irt/software/rtptools/download/rtptools-${version}.tar.gz";
|
||||
sha256 = "0a4c0vmhxibfc58rrxpbav2bsk546chkg50ir4h3i57v4fjb4xic";
|
||||
};
|
||||
meta = {
|
||||
description = "A number of small applications that can be used for processing RTP data";
|
||||
homepage = "https://www.cs.columbia.edu/irt/software/rtptools/";
|
||||
maintainers = [ lib.maintainers.lheckemann ];
|
||||
platforms = lib.platforms.unix;
|
||||
license = lib.licenses.bsd3;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue