about summary refs log tree commit diff
path: root/pkgs/os-specific/linux/musl
diff options
context:
space:
mode:
authorWill Dietz <w@wdtz.org>2017-10-31 15:42:08 -0500
committerWill Dietz <w@wdtz.org>2017-10-31 15:45:24 -0500
commit399020d2f557f056b9cdcaff3905d5e06d7820f9 (patch)
tree551cc60d10bfdc98b23e2c6265fe9a6e24dc743a /pkgs/os-specific/linux/musl
parent67982125718b34d73df80520ea18160f6021e0d9 (diff)
musl: 1.1.17 -> 1.1.18
Use this as an opportunity to remove
empty patches array.
Diffstat (limited to 'pkgs/os-specific/linux/musl')
-rw-r--r--pkgs/os-specific/linux/musl/default.nix6
1 files changed, 2 insertions, 4 deletions
diff --git a/pkgs/os-specific/linux/musl/default.nix b/pkgs/os-specific/linux/musl/default.nix
index c51b8b26c809f..aaef5315b0f0f 100644
--- a/pkgs/os-specific/linux/musl/default.nix
+++ b/pkgs/os-specific/linux/musl/default.nix
@@ -2,11 +2,11 @@
 
 stdenv.mkDerivation rec {
   name    = "musl-${version}";
-  version = "1.1.17";
+  version = "1.1.18";
 
   src = fetchurl {
     url    = "http://www.musl-libc.org/releases/${name}.tar.gz";
-    sha256 = "0r0lyp2w6v2bvm8h1si7w3p2qx037szl14qnxm5p00568z3m3an8";
+    sha256 = "0651lnj5spckqjf83nz116s8qhhydgqdy3rkl4icbh5f05fyw5yh";
   };
 
   enableParallelBuilding = true;
@@ -25,8 +25,6 @@ stdenv.mkDerivation rec {
     "CFLAGS=-fstack-protector-strong"
   ];
 
-  patches = [];
-
   dontDisableStatic = true;
 
   meta = {