mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
socklog: properly disable the chkshsgr test
My previous attempt d438cbb0b6
was
bogus ...
This commit is contained in:
parent
2a329d4c18
commit
705f47f50e
1 changed files with 1 additions and 5 deletions
|
@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
|
|||
outputs = [ "out" "man" "doc" ];
|
||||
|
||||
postPatch = ''
|
||||
sed -i src/TARGETS -e '/^chkshsgr/d'
|
||||
echo "int main() { return 0; }" >src/chkshsgr.c
|
||||
'';
|
||||
|
||||
configurePhase = ''
|
||||
|
@ -27,8 +27,6 @@ stdenv.mkDerivation rec {
|
|||
buildPhase = ''package/compile'';
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
|
||||
mkdir -p $out/bin
|
||||
mv command"/"* $out/bin
|
||||
|
||||
|
@ -39,8 +37,6 @@ stdenv.mkDerivation rec {
|
|||
|
||||
mkdir -p $doc/share/doc/socklog/html
|
||||
mv doc/*.html $doc/share/doc/socklog/html/
|
||||
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
checkPhase = ''package/check'';
|
||||
|
|
Loading…
Reference in a new issue