nixpkgs/pkgs/tools/X11/xtruss/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
585 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, cmake, halibut }:
2019-03-18 05:15:55 +01:00
stdenv.mkDerivation rec {
pname = "xtruss";
version = "20211025.c25bf48";
2019-03-18 05:15:55 +01:00
src = fetchurl {
url = "https://www.chiark.greenend.org.uk/~sgtatham/xtruss/${pname}-${version}.tar.gz";
sha256 = "sha256-ikuKHtXEn2UVLE62l7qD9qc9ZUk6jiAqj5ru36vgdHk=";
2019-03-18 05:15:55 +01:00
};
nativeBuildInputs = [ cmake halibut ];
meta = with lib; {
2019-03-18 05:15:55 +01:00
description = "easy-to-use X protocol tracing program";
homepage = "https://www.chiark.greenend.org.uk/~sgtatham/xtruss";
2019-03-18 05:15:55 +01:00
license = licenses.mit;
maintainers = with maintainers; [ dtzWill ];
};
}