summary refs log tree commit diff
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2020-04-12 09:56:50 +0000
committerR. RyanTM <ryantm-bot@ryantm.com>2020-04-12 09:56:50 +0000
commit6cb3dcf2e6403ca3ade28c3af4186953d8ee8ed4 (patch)
tree32edf59196ed31742a43451ff76d9c2ba4438a09
parent807ca93fadd5197c2260490de0c76e500562dc05 (diff)
downloadnixpkgs-6cb3dcf2e6403ca3ade28c3af4186953d8ee8ed4.tar
nixpkgs-6cb3dcf2e6403ca3ade28c3af4186953d8ee8ed4.tar.gz
nixpkgs-6cb3dcf2e6403ca3ade28c3af4186953d8ee8ed4.tar.bz2
nixpkgs-6cb3dcf2e6403ca3ade28c3af4186953d8ee8ed4.tar.lz
nixpkgs-6cb3dcf2e6403ca3ade28c3af4186953d8ee8ed4.tar.xz
nixpkgs-6cb3dcf2e6403ca3ade28c3af4186953d8ee8ed4.tar.zst
nixpkgs-6cb3dcf2e6403ca3ade28c3af4186953d8ee8ed4.zip
fasm: 1.73.22 -> 1.73.23
-rw-r--r--pkgs/development/compilers/fasm/bin.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/compilers/fasm/bin.nix b/pkgs/development/compilers/fasm/bin.nix
index fd3bb8d4c42..8b5230d2e72 100644
--- a/pkgs/development/compilers/fasm/bin.nix
+++ b/pkgs/development/compilers/fasm/bin.nix
@@ -3,11 +3,11 @@
 stdenvNoCC.mkDerivation rec {
   pname = "fasm-bin";
 
-  version = "1.73.22";
+  version = "1.73.23";
 
   src = fetchurl {
     url = "https://flatassembler.net/fasm-${version}.tgz";
-    sha256 = "1pb0rcfdsb0h89khjjrbikz5wjdllavj3ajim0rcyh7x12xr1hw5";
+    sha256 = "1p7hs4sqnfxw6axdifjbdcllvl1ycx5vf6n7nvq1gampz0yfcl6j";
   };
 
   installPhase = ''
@@ -16,7 +16,7 @@ stdenvNoCC.mkDerivation rec {
 
   meta = with lib; {
     description = "x86(-64) macro assembler to binary, MZ, PE, COFF, and ELF";
-    homepage = https://flatassembler.net/download.php;
+    homepage = "https://flatassembler.net/download.php";
     license = licenses.bsd2;
     maintainers = with maintainers; [ orivej ];
     platforms = [ "i686-linux" "x86_64-linux" ];