xtrace 1.0.2.
svn path=/nixpkgs/branches/stdenv-updates/; revision=24854
This commit is contained in:
parent
1cb59660e0
commit
c50a240e3d
@ -1,17 +1,24 @@
|
|||||||
{stdenv, fetchurl, libX11}:
|
{ stdenv, fetchurl, libX11, xauth, makeWrapper }:
|
||||||
|
|
||||||
|
let version = "1.0.2"; in
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "xtrace-1.0.1";
|
name = "xtrace-${version}";
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://alioth.debian.org/frs/download.php/3149/xtrace_1.0.1.orig.tar.gz";
|
url = "https://alioth.debian.org/frs/download.php/3201/xtrace_${version}.orig.tar.gz";
|
||||||
sha256 = "042rifm93mws7xbw86z0m1rmdijprlkijsi2882as1yf6gdbdqbm";
|
sha256 = "0czywk2iwj9vifml0qjlbz8n9jnqjsm4zz22haii82bf4l5w3y04";
|
||||||
};
|
};
|
||||||
buildInputs = [libX11];
|
|
||||||
|
buildInputs = [ libX11 makeWrapper ];
|
||||||
|
|
||||||
|
postInstall =
|
||||||
|
'' wrapProgram "$out/bin/xtrace" \
|
||||||
|
--prefix PATH ':' "${xauth}/bin"
|
||||||
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = http://xtrace.alioth.debian.org/;
|
homepage = http://xtrace.alioth.debian.org/;
|
||||||
description = "Trace X protocol connections";
|
description = "xtrace, a tool to trace X11 protocol connections";
|
||||||
license = "free";
|
license = "GPLv2";
|
||||||
maintainers = with stdenv.lib.maintainers; [viric];
|
maintainers = with stdenv.lib.maintainers; [viric];
|
||||||
platforms = with stdenv.lib.platforms; linux;
|
platforms = with stdenv.lib.platforms; linux;
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user