glibc: Simplify derivation further

No native hashes should be changed with this commit
default.nix's cross hash should also not be changed
This commit is contained in:
John Ericson
2017-05-20 22:17:28 -04:00
parent 7e096024d7
commit 25edc476fd
5 changed files with 62 additions and 71 deletions
+4 -5
View File
@@ -6,14 +6,13 @@
http://sourceware.org/cgi-bin/cvsweb.cgi/libc/localedata/SUPPORTED?cvsroot=glibc
*/
{ lib, stdenv, fetchurl, writeText, allLocales ? true, locales ? ["en_US.UTF-8/UTF-8"] }:
{ stdenv, callPackage, writeText
, allLocales ? true, locales ? [ "en_US.UTF-8/UTF-8" ]
}:
let build = import ./common.nix; in
build null {
callPackage ./common.nix { inherit stdenv; } {
name = "glibc-locales";
inherit fetchurl stdenv lib;
installLocales = true;
builder = ./locales-builder.sh;