xtrace: fix build and update to 1.3.1
Alioth now requires a login before you can download tarballs.
This commit is contained in:
parent
658d1f656a
commit
eda6fd83a8
@ -1,14 +1,19 @@
|
|||||||
{ stdenv, fetchurl, libX11, xauth, makeWrapper }:
|
{ stdenv, autoreconfHook, fetchgit, libX11, xauth, makeWrapper }:
|
||||||
|
|
||||||
let version = "1.0.2"; in
|
let version = "1.3.1"; in
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "xtrace-${version}";
|
name = "xtrace-${version}";
|
||||||
src = fetchurl {
|
src = fetchgit {
|
||||||
url = "https://alioth.debian.org/frs/download.php/3201/xtrace_${version}.orig.tar.gz";
|
url = "git://git.debian.org/xtrace/xtrace.git";
|
||||||
sha256 = "0czywk2iwj9vifml0qjlbz8n9jnqjsm4zz22haii82bf4l5w3y04";
|
rev = "refs/tags/xtrace-1.3.1";
|
||||||
|
sha256 = "0csjw88ynzzcmx1jlb65c74r2sp9dzxn00airsxxfsipb74049d0";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ libX11 makeWrapper ];
|
buildInputs = [ libX11 makeWrapper autoreconfHook ];
|
||||||
|
|
||||||
|
preConfigure = ''
|
||||||
|
./autogen.sh
|
||||||
|
'';
|
||||||
|
|
||||||
postInstall =
|
postInstall =
|
||||||
'' wrapProgram "$out/bin/xtrace" \
|
'' wrapProgram "$out/bin/xtrace" \
|
||||||
|
Loading…
Reference in New Issue
Block a user