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
28
pkgs/tools/security/ecdsatool/default.nix
Normal file
28
pkgs/tools/security/ecdsatool/default.nix
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
{ lib, stdenv, pkgs }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
version = "0.0.1";
|
||||
pname = "ecdsatool";
|
||||
|
||||
src = pkgs.fetchFromGitHub {
|
||||
owner = "kaniini";
|
||||
repo = "ecdsatool";
|
||||
rev = "7c0b2c51e2e64d1986ab1dc2c57c2d895cc00ed1";
|
||||
sha256 = "08z9309znkhrjpwqd4ygvm7cd1ha1qbrnlzw64fr8704jrmx762k";
|
||||
};
|
||||
|
||||
configurePhase = ''
|
||||
./autogen.sh
|
||||
./configure --prefix=$out
|
||||
'';
|
||||
|
||||
nativeBuildInputs = with pkgs; [openssl autoconf automake];
|
||||
buildInputs = with pkgs; [libuecc];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Create and manipulate ECC NISTP256 keypairs";
|
||||
homepage = "https://github.com/kaniini/ecdsatool/";
|
||||
license = with licenses; [free];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue