agda: Just with all of the string helper functions

This commit is contained in:
John Ericson 2015-05-30 19:30:24 +00:00
parent 21b10ab44f
commit 9b31a07b0d

View file

@ -7,12 +7,12 @@
, extension ? (self: super: {})
}:
with stdenv.lib.strings;
let
optionalString = stdenv.lib.optionalString;
filter = stdenv.lib.filter;
concatMapStringsSep = stdenv.lib.strings.concatMapStringsSep;
concatMapStrings = stdenv.lib.strings.concatMapStrings;
unwords = stdenv.lib.strings.concatStringsSep " ";
unwords = concatStringsSep " ";
mapInside = xs: unwords (map (x: x + "/*") xs);
defaults = self : {