summary refs log tree commit diff
path: root/pkgs/development/libraries/glibc/info.nix
diff options
context:
space:
mode:
authorJohn Ericson <Ericson2314@Yahoo.com>2017-05-18 06:55:08 -0400
committerJohn Ericson <Ericson2314@Yahoo.com>2017-05-20 22:17:28 -0400
commit25edc476fd9fe1bd8bedf571d218ba4f27fb5a27 (patch)
treedca0f0e35b395278e4b7963d6124439b9b9c5eaf /pkgs/development/libraries/glibc/info.nix
parent7e096024d7cf0ea1ca2a0d0d79d33d3f3e4e9965 (diff)
downloadnixlib-25edc476fd9fe1bd8bedf571d218ba4f27fb5a27.tar
nixlib-25edc476fd9fe1bd8bedf571d218ba4f27fb5a27.tar.gz
nixlib-25edc476fd9fe1bd8bedf571d218ba4f27fb5a27.tar.bz2
nixlib-25edc476fd9fe1bd8bedf571d218ba4f27fb5a27.tar.lz
nixlib-25edc476fd9fe1bd8bedf571d218ba4f27fb5a27.tar.xz
nixlib-25edc476fd9fe1bd8bedf571d218ba4f27fb5a27.tar.zst
nixlib-25edc476fd9fe1bd8bedf571d218ba4f27fb5a27.zip
glibc: Simplify derivation further
No native hashes should be changed with this commit
default.nix's cross hash should also not be changed
Diffstat (limited to 'pkgs/development/libraries/glibc/info.nix')
-rw-r--r--pkgs/development/libraries/glibc/info.nix9
1 files changed, 2 insertions, 7 deletions
diff --git a/pkgs/development/libraries/glibc/info.nix b/pkgs/development/libraries/glibc/info.nix
index 84ec43e11a85..5cb004cc870d 100644
--- a/pkgs/development/libraries/glibc/info.nix
+++ b/pkgs/development/libraries/glibc/info.nix
@@ -1,13 +1,8 @@
-{ lib, stdenv, fetchurl, texinfo, perl }:
+{ callPackage, texinfo, perl }:
 
-let build = import ./common.nix; in
-
-/* null cross builder */
-build null {
+callPackage ./common.nix {} {
   name = "glibc-info";
 
-  inherit fetchurl stdenv lib;
-
   outputs = [ "out" ];
 
   configureFlags = [ "--enable-add-ons" ];