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
31
pkgs/tools/security/onioncircuits/default.nix
Normal file
31
pkgs/tools/security/onioncircuits/default.nix
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
{ stdenv, lib, fetchgit, python3, intltool, gtk3, gobject-introspection, gnome }:
|
||||
|
||||
python3.pkgs.buildPythonApplication rec {
|
||||
pname = "onioncircuits";
|
||||
version = "0.5";
|
||||
|
||||
src = fetchgit {
|
||||
url = "https://git-tails.immerda.ch/onioncircuits/";
|
||||
rev = version;
|
||||
sha256 = "13mqif9b9iajpkrl9ijspdnvy82kxhprxd5mw3njk68rcn4z2pcm";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ intltool ];
|
||||
buildInputs = [ intltool gtk3 gobject-introspection ];
|
||||
propagatedBuildInputs = with python3.pkgs; [ stem distutils_extra pygobject3 ];
|
||||
|
||||
postFixup = ''
|
||||
wrapProgram "$out/bin/onioncircuits" \
|
||||
--prefix GI_TYPELIB_PATH : "$GI_TYPELIB_PATH" \
|
||||
--prefix XDG_DATA_DIRS : "$out/share:${gnome.adwaita-icon-theme}/share"
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
broken = stdenv.isDarwin;
|
||||
homepage = "https://tails.boum.org";
|
||||
description = "GTK application to display Tor circuits and streams";
|
||||
license = licenses.gpl3;
|
||||
maintainers = [ ];
|
||||
};
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue