mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 16:45:49 +01:00
xtruss: 20181001 -> 20211025
https://git.tartarus.org/?p=simon/xtruss.git;a=shortlog;h=c25bf48c14c977d1c76f122b73c37f15df6ae6d5 (back to 2018-09-30 commit 82973f5) * now uses cmake to build * halibut for manpage generation
This commit is contained in:
parent
5860e2db48
commit
bff92bb646
1 changed files with 5 additions and 3 deletions
|
@ -1,14 +1,16 @@
|
|||
{ lib, stdenv, fetchurl }:
|
||||
{ lib, stdenv, fetchurl, cmake, halibut }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "xtruss";
|
||||
version = "20181001.82973f5";
|
||||
version = "20211025.c25bf48";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://www.chiark.greenend.org.uk/~sgtatham/xtruss/${pname}-${version}.tar.gz";
|
||||
sha256 = "1mm8k92zc318jk71wlf2r4rb723nd9lalhjl0pf48raiajb5ifgd";
|
||||
sha256 = "sha256-ikuKHtXEn2UVLE62l7qD9qc9ZUk6jiAqj5ru36vgdHk=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake halibut ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "easy-to-use X protocol tracing program";
|
||||
homepage = "https://www.chiark.greenend.org.uk/~sgtatham/xtruss";
|
||||
|
|
Loading…
Reference in a new issue