gitAndTools.qgit: turn off format hardening
This commit is contained in:
parent
99fdd5694e
commit
c9aceaea86
@ -2,21 +2,26 @@
|
|||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "qgit-2.5";
|
name = "qgit-2.5";
|
||||||
meta =
|
|
||||||
{
|
src = fetchurl {
|
||||||
|
url = "http://libre.tibirna.org/attachments/download/9/${name}.tar.gz";
|
||||||
|
sha256 = "25f1ca2860d840d87b9919d34fc3a1b05d4163671ed87d29c3e4a8a09e0b2499";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [qt libXext libX11];
|
||||||
|
|
||||||
|
hardening_format = false;
|
||||||
|
|
||||||
|
configurePhase = "qmake PREFIX=$out";
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
install -s -D -m 755 bin/qgit "$out/bin/qgit"
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = {
|
||||||
license = stdenv.lib.licenses.gpl2;
|
license = stdenv.lib.licenses.gpl2;
|
||||||
homepage = "http://libre.tibirna.org/projects/qgit/wiki/QGit";
|
homepage = "http://libre.tibirna.org/projects/qgit/wiki/QGit";
|
||||||
description = "Graphical front-end to Git";
|
description = "Graphical front-end to Git";
|
||||||
inherit (qt.meta) platforms;
|
inherit (qt.meta) platforms;
|
||||||
};
|
};
|
||||||
src = fetchurl
|
|
||||||
{
|
|
||||||
url = "http://libre.tibirna.org/attachments/download/9/${name}.tar.gz";
|
|
||||||
sha256 = "25f1ca2860d840d87b9919d34fc3a1b05d4163671ed87d29c3e4a8a09e0b2499";
|
|
||||||
};
|
|
||||||
buildInputs = [qt libXext libX11];
|
|
||||||
configurePhase = "qmake PREFIX=$out";
|
|
||||||
installPhase = ''
|
|
||||||
install -s -D -m 755 bin/qgit "$out/bin/qgit"
|
|
||||||
'';
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user