about summary refs log tree commit diff
path: root/pkgs/development/compilers
diff options
context:
space:
mode:
authorAnderson Torres <torres.anderson.85@protonmail.com>2021-11-03 14:40:03 -0300
committerGitHub <noreply@github.com>2021-11-03 14:40:03 -0300
commitdec4cce188b0dc85c47cd78cce571a9cc2149169 (patch)
tree68ed960aff85aa16c931ce06e808907b864b7559 /pkgs/development/compilers
parent9d0efa35fe77d289b275177775d201ab036a92ab (diff)
parentc70a27d607ed4927c47e39de2801e6ed3a2c5f7c (diff)
Merge pull request #144485 from AndersonTorres/new-asm
asl: fix the expression
Diffstat (limited to 'pkgs/development/compilers')
-rw-r--r--pkgs/development/compilers/asl/default.nix8
1 files changed, 2 insertions, 6 deletions
diff --git a/pkgs/development/compilers/asl/default.nix b/pkgs/development/compilers/asl/default.nix
index 981dde1e7a733..b02847b059394 100644
--- a/pkgs/development/compilers/asl/default.nix
+++ b/pkgs/development/compilers/asl/default.nix
@@ -1,7 +1,7 @@
 { lib
 , stdenv
 , fetchzip
-, buildDocs? false, tex
+, buildDocs ? false, tex
 }:
 
 stdenv.mkDerivation rec {
@@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
     hash = "sha256-Sbm16JX7kC/7Ws7YgNBUXNqOCl6u+RXgfNjTODhCzSM=";
   };
 
-  nativeBuildInputs = lib.optional buildDocs [ tex ];
+  nativeBuildInputs = lib.optionals buildDocs [ tex ];
 
   postPatch = lib.optionalString (!buildDocs) ''
     substituteInPlace Makefile --replace "all: binaries docs" "all: binaries"
@@ -32,10 +32,6 @@ stdenv.mkDerivation rec {
     mkdir -p .objdir
   '';
 
-  hardenedDisable = [ "all" ];
-
-  # buildTargets = [ "binaries" "docs" ];
-
   meta = with lib; {
     homepage = "http://john.ccac.rwth-aachen.de:8000/as/index.html";
     description = "Portable macro cross assembler";