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