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
27
pkgs/tools/misc/dbus-map/default.nix
Normal file
27
pkgs/tools/misc/dbus-map/default.nix
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
{ stdenv, lib, fetchFromGitHub, pkg-config, glib, procps, libxml2 }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
pname = "dbus-map";
|
||||
version = "2015-05-28";
|
||||
src = fetchFromGitHub {
|
||||
owner = "taviso";
|
||||
repo = "dbusmap";
|
||||
rev = "43703fc5e15743309b67131b5ba457b0d6ea7667";
|
||||
sha256 = "1pjqn6w29ci8hfxkn1aynzfc8nvy3pqv3hixbxwr7qx20g4rwvdc";
|
||||
};
|
||||
nativeBuildInputs = [ pkg-config ];
|
||||
buildInputs = [
|
||||
glib procps libxml2
|
||||
];
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin
|
||||
mv dbus-map $out/bin
|
||||
'';
|
||||
meta = with lib; {
|
||||
description = "Simple utility for enumerating D-Bus endpoints, an nmap for D-Bus";
|
||||
homepage = "https://github.com/taviso/dbusmap";
|
||||
license = licenses.gpl2;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ cstrahan ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue