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
21
pkgs/development/libraries/libvori/default.nix
Normal file
21
pkgs/development/libraries/libvori/default.nix
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
{ stdenv, lib, fetchurl, cmake }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "libvori";
|
||||
version = "210412";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://brehm-research.de/files/${pname}-${version}.tar.gz";
|
||||
sha256 = "1b4hpwibf3k7gl6n984l3wdi0zyl2fmpz84m9g2di4yhm6p8c61k";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Library for Voronoi intergration of electron densities";
|
||||
homepage = "https://brehm-research.de/libvori.php";
|
||||
license = with licenses; [ lgpl3Only ];
|
||||
platforms = platforms.unix;
|
||||
maintainers = [ maintainers.sheepforce ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue