mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
Merge pull request #14990 from cstrahan/dbusmap
dbus-map: init 2015-05-28
This commit is contained in:
commit
4c0f379fc9
26
pkgs/tools/misc/dbus-map/default.nix
Normal file
26
pkgs/tools/misc/dbus-map/default.nix
Normal file
@ -0,0 +1,26 @@
|
||||
{ stdenv, lib, fetchFromGitHub, pkgconfig, glib, procps, libxml2 }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "dbus-map-${version}";
|
||||
version = "2015-05-28";
|
||||
src = fetchFromGitHub {
|
||||
owner = "taviso";
|
||||
repo = "dbusmap";
|
||||
rev = "43703fc5e15743309b67131b5ba457b0d6ea7667";
|
||||
sha256 = "1pjqn6w29ci8hfxkn1aynzfc8nvy3pqv3hixbxwr7qx20g4rwvdc";
|
||||
};
|
||||
buildInputs = [
|
||||
pkgconfig 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 ];
|
||||
};
|
||||
}
|
@ -16153,6 +16153,8 @@ in
|
||||
enableAllFeatures = true;
|
||||
});
|
||||
|
||||
dbus-map = callPackage ../tools/misc/dbus-map { };
|
||||
|
||||
dosbox = callPackage ../misc/emulators/dosbox { };
|
||||
|
||||
dpkg = callPackage ../tools/package-management/dpkg { };
|
||||
|
Loading…
Reference in New Issue
Block a user