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
24
pkgs/development/python-modules/misaka/default.nix
Normal file
24
pkgs/development/python-modules/misaka/default.nix
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
{ lib, fetchPypi, buildPythonPackage, cffi }:
|
||||
buildPythonPackage rec {
|
||||
pname = "misaka";
|
||||
version = "2.1.1";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1mzc29wwyhyardclj1vg2xsfdibg2lzb7f1azjcxi580ama55wv2";
|
||||
};
|
||||
|
||||
propagatedNativeBuildInputs = [ cffi ];
|
||||
|
||||
propagatedBuildInputs = [ cffi ];
|
||||
|
||||
# The tests require write access to $out
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
description = "A CFFI binding for Hoedown, a markdown parsing library";
|
||||
homepage = "https://misaka.61924.nl";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ fgaz ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue