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
19
pkgs/tools/networking/sipcalc/default.nix
Normal file
19
pkgs/tools/networking/sipcalc/default.nix
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
{ lib, stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "sipcalc";
|
||||
version = "1.1.6";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://www.routemeister.net/projects/sipcalc/files/${pname}-${version}.tar.gz";
|
||||
sha256 = "cfd476c667f7a119e49eb5fe8adcfb9d2339bc2e0d4d01a1d64b7c229be56357";
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
description = "Advanced console ip subnet calculator";
|
||||
homepage = "http://www.routemeister.net/projects/sipcalc/";
|
||||
license = licenses.bsd3;
|
||||
platforms = platforms.all;
|
||||
maintainers = [ maintainers.globin ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue