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
29
pkgs/development/python-modules/clintermission/default.nix
Normal file
29
pkgs/development/python-modules/clintermission/default.nix
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
{ lib, buildPythonApplication, fetchFromGitHub, isPy3k, prompt-toolkit }:
|
||||
|
||||
buildPythonApplication rec {
|
||||
pname = "clintermission";
|
||||
version = "0.2.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "sebageek";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "09wl0rpw6c9hab51rs957z64b0v9j4fcbqbn726wnapf4z5w6yxv";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ prompt-toolkit ];
|
||||
|
||||
disabled = !isPy3k;
|
||||
|
||||
# repo contains no tests
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [ "clintermission" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Non-fullscreen command-line selection menu";
|
||||
homepage = "https://github.com/sebageek/clintermission";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ SuperSandro2000 ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue